-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
79 lines (65 loc) · 3.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML Elements Reference</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<div id="hero">
<h1>Explore Nigeria</h1>
<h2>The Giant of Africa</h2>
</div>
<div class="list">
<h3><span class="underline">Geography</span></h3>
<h3><span class="underline">History</span></h3>
<h3><span class="underline">People and Culture</span></h3>
<h3><span class="underline">Nature</span></h3>
</div>
<div class="gmain">
<h2>Geography</h2>
</div>
<div class="geography">
<img src="geography.jpg"
alt="sub sahara Africa" class="geographyimg">
<div class="gtext">
<p>Nigeria, the "Giant of Africa," is located in West Africa and boasts a diverse landscape. From the lush tropical rainforests of the south to the arid savannahs of the north, the country is rich in natural features. Key landmarks include the Niger River, Zuma Rock, the Jos Plateau, and the Niger Delta, one of the world’s largest wetlands.</p>
</div>
</div>
<div class="main">
<h2>History</h2>
</div>
<div class="history">
<img src="history.jpg"
alt="city in Nigeria" class="historyimg">
<div class="htext">
<p>Nigeria's history is marked by ancient civilizations, like the Nok culture, and powerful kingdoms such as Benin and Oyo. After British colonization, Nigeria gained independence in 1960. Today, it is Africa's most populous nation and a leader in culture, economy, and innovation.</p>
</div>
</div>
<div class="cmain">
<h2>People and Culture</h2>
</div>
<div class="culture">
<img src="culture.jpg"
alt="Men in Native Nigeria outfit at a carnival" class="cultureimg">
<div class="ctext">
<p>With over 200 ethnic groups and 500+ languages, Nigeria is one of the most culturally diverse nations on Earth. Major ethnic groups include the Hausa-Fulani, Yoruba, and Igbo. Festivals like the Durbar and Eyo, Afrobeat music, and traditional dishes like Jollof rice and suya reflect the vibrancy of Nigerian life.</p>
</div>
</div>
<div class="nmain">
<h2>Nature</h2>
</div>
<div class="nature">
<img src="nature.jpg"
alt="Nature and landscapes of Nigeria" class="natureimg">
<div class="ntext">
<p>Nigeria is home to stunning wildlife and breathtaking natural attractions. National parks like Yankari and Cross River showcase elephants, gorillas, and rare bird species. Waterfalls such as Erin-Ijesha and beaches like Tarkwa Bay highlight the country’s natural beauty, making it a haven for nature lovers.</p>
</div>
</div>
<div class="more">
<p>To know more about Nigeria, click on <a href="https://www.bing.com/search?q=about+nigeria+country&cvid=082dc66039e9451eb339854077892370&gs_lcrp=EgRlZGdlKgYIARAAGEAyBggAEEUYOTIGCAEQABhAMgYIAhAAGEAyBggDEAAYQDIGCAQQABhAMgYIBRAAGEAyBggGEAAYQDIGCAcQABhAMgYICBAAGEDSAQkzNjg4OWowajmoAgiwAgE&FORM=ANAB01&PC=LCTS#">Learn more</a></p>
</div>
<p></p>
</div>
</body>
</html>