-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (73 loc) · 1.87 KB
/
index.html
File metadata and controls
81 lines (73 loc) · 1.87 KB
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
81
<!DOCTYPE html>
<html>
<head>
<title>About Me, with a guessing game</title>
<link rel="stylesheet" href="CSS/reset.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=IM+Fell+English+SC&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="CSS/style.css">
</head>
<body>
<header>
<h1>About Me, with a guessing game</h1>
<nav>
<ul>
<li>
<a href="#">Home</a> </li>
<li>
<a href="#">About us</a>
</li>
<li>
<a href="#">Contact us</a>
</li>
</ul>
</nav>
</header>
<main>
<section id="first">
<h2>
<div>
About me:
</div>
<ul>
<li>
I am Layana Baba.
</li>
<li>
Chemical Engineer, I have experience in QC.
</li>
<li>
My ambition is to become a skilled software developer.
</li>
</ul>
</h2>
</section>
<section id="second">
<h3>
<div>
TOP TEN FILMS IN 2020:
</div>
</h3>
<ol type="1">
<li>Small Axe: Lovers Rock</li>
<li>Nomadland</li>
<li>David Byrne’s American Utopia</li>
<li>First Cow</li>
<li>Da 5 Bloods</li>
<li>Minari</li>
<li>Beanpole</li>
<li>Never Rarely Sometimes Always</li>
<li>The Nest</li>
<li>The Assistant</li>
</ol>
</section>
</main>
<footer style="color: #8f4f4f; background-color: #f7d9d9;">
© 2021
</footer>
<script src="js/app.js">
</script>
</body>
</html>