-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<title>User Profile</title>
</head>
<body>
<header>
<h1 id="title">Kadar Seid</h1>
</header>
<main>
<section>
<h2 class="sub-title">Hobbies</h2>
<ul>
<li>Weight Lifting</li>
<li>Bowling</li>
<li>Music</li>
</ul>
</section>
<section>
<h2 class="sub-title">Favorite Bands</h2>
<ol>
<li>Seventh Wonder</li>
<li>Ne Obliviscaris</li>
<li>Be'lakor</li>
<li>Opeth</li>
<li>Katy Perry</li>
</ol>
</section>
<section>
<h2 class="sub-title">Favorite Languages</h2>
<ol>
<li>CSS</li>
<li>JavaScript</li>
<li>Pythone</li>
</ol>
</section>
</main>
</body>
</html>