-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (73 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- INTER FONT -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap"
rel="stylesheet"
/>
<!-- StyleSheet -->
<link rel="stylesheet" href="./style.css" />
<title>VISIT LAGOS</title>
</head>
<body>
<header id="hero">
<h1 class="vl">VISIT LAGOS</h1>
<h2 class="th">The Tech Hub of Nigeria</h2>
</header>
<main>
<div id="featurette">
<div id="featurette-heading">THINGS <span>TO DO IN LAGOS</span></div>
<div id="featurette-items">
<div>
<div id="food"></div>
<h3>Come and try Different Delecacies</h3>
<p>
Nigeria is home to various tribes with a wide range of various
delicious dishes.
</p>
</div>
<div>
<div id="concert"></div>
<h3>Attend a Concert</h3>
<p>
The Nigerian music industry is one of the best worldwide, come and
have fun.
</p>
</div>
<div>
<div id="garden"></div>
<h3>Visit our Parks and Gardens</h3>
<p>
We have a variety of parks and gardens to host your picnics and
meetups while having a good time.
</p>
</div>
</div>
</div>
<div id="tour-guide">
<div id="tour-guide-pic"></div>
<div id="tour-guide-text">
<h1 id="tour-guide-heading">YOUR TOUR GUIDE</h1>
<p id="tour-guide-intro">
<q>
I have lived in Lagos for the past 20 years since I was a child,
Come join me while we explore <strong> Lagos </strong>
</q>
</p>
<p id="tour-guide-name">
<strong><i>~ Micheal</i></strong>
</p>
</div>
</div>
</main>
<footer>
<p>Made by <a href="https://linktr.ee/chiobichisom">Jason</a></p>
</footer>
</body>
</html>