-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (67 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Jörg's Page.</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Jörg von Dzerzawa</h1>
<p><i>"Hey, Macarena." - Los Del Rio</i></p>
<br>
<img src="me.jpg" alt="An image of Jörg." class="center">
<br>
<table>
<tbody>
<tr>
<td>Birthday:</td>
<td>26/09</td>
</tr>
<tr>
<td>Gender:</td>
<td>Male</td>
</tr>
<tr>
<td>Favorite color:</td>
<td>Orange</td>
</tr>
<tr>
<td>Favorite food:</td>
<td>Doesn't discriminate</td>
</tr>
<tr>
<td>Pineapple on pizza</td>
<td><input type="checkbox"/></td>
</tr>
</tbody>
</table>
<br>
<h3>Hobbies</h3>
<ul>
<li>Videogames
<ul class="disco">
<li>League of Legends (ARAM only)</li>
<li>The Legend of Zelda</li>
<li>Poketto Monstah</li>
</ul>
</li>
<li>Ultimate Frisbee</li>
<li>Music
<ul class="disco">
<li>Playing the guitar</li>
<li>Producing music on my computer</li>
</ul>
</li>
<li> Hobby Chef</li>
</ul>
<h3 class="float">You can always count on me when...</h3>
<p class="float">You've made too much dinner... Also, I've been told I'm a good listener. Finally, if anyone's ever stuck on anything Tim throws at us that I've somehow managed to figure out, I'm always here to try to help!</p>
<h3 class="float">A funny story.</h3>
<p class="float">I shaved my head for charity once.</p>
<h5 class="float">TL;DR</h5>
<p class="float">It was not a good look...</p>
<footer>
<p><a href="https://sven-i-am.github.io/html-introduction/">previous</a> || Jörg || <a href="https://stefanamur.github.io/html-introduction/">next</a></p>
</footer>
</body>
</html>