-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (72 loc) · 2.39 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, viewport-fit=cover"
/>
<meta name="author" content="Tobias Bednar" />
<meta name="description" content="Tobias Bednar's personal website" />
<meta name="keywords" content="Tobias Bednar, Bednar, Tobias" />
<meta name="theme-color" content="#fff" />
<meta property="og:url" content="https://tobb.dev" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Tobias Bednar" />
<meta
property="og:description"
content="Tobias Bednar's personal website"
/>
<meta property="og:image" content="./assets/img/profile.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="tobb.dev" />
<meta property="twitter:url" content="https://tobb.dev" />
<meta name="twitter:title" content="Tobias Bednar" />
<meta
name="twitter:description"
content="Tobias Bednar's personal website"
/>
<meta name="twitter:image" content="./assets/img/profile.png" />
<link type="text/css" rel="stylesheet" href="css/style.css" />
<script
src="https://kit.fontawesome.com/783946132e.js"
crossorigin="anonymous"
></script>
<title>Tobias Bednar</title>
</head>
<body>
<header>
<h1 class="title">Tobias Bednar</h1>
<nav class="socials">
<a href="mailto:[email protected]">
<i class="fa-solid fa-envelope"></i>
</a>
<a href="https://x.com/tobb_dev">
<i class="fa-brands fa-x-twitter"></i>
</a>
<a href="https://www.instagram.com/tobiasbednar__">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="https://github.com/Tob028">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://linkedin.com/in/tobias-bednar-4331a2264">
<i class="fa-brands fa-linkedin"></i>
</a>
</nav>
</header>
<main>
<img
src="./assets/img/profile.png"
class="posing-image"
alt="A photo of Tobias Bednar"
/>
<span class="separator"></span>
<article class="introduction">
<h1>Hey,</h1>
<h2>I'm Tobias.</h2>
<p>I'm a 16 year old student and developer from Czechia.</p>
</article>
</main>
</body>
</html>