-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (112 loc) · 6.06 KB
/
index.html
File metadata and controls
129 lines (112 loc) · 6.06 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale= 1.0">
<title>Mo's Blog</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel = "stylesheet" type = "text/css" href = "./../css/index.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<nav class="navbar navbar-expand-md navbar-expand-sm navbar-dark bg-dark sticky-top">
<div class="container">
<a class="navbar-brand" href="index.html">Mo's Blog!</a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#iddd">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="iddd">
<ul class="navbar-nav ml-auto justify-content-end">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="gallery.html">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactus.html">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link "href="Aboutus.html">About Us</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="container">
<h1 class="text-center">Amazing places in Nigeria</h1>
<p class="text-center"></p>
<div class="row">
<div class="col-md-4">
<div class="single-blog">
<p class="blog-meta">By admin <span>May 10, 2020</span></p>
<img src="./../images/waterfalls.png">
<h2><a href="#">Enugu, Nigeria</a></h2>
<p class="blog-text">The Awhum waterfall is 30 metres high and is located in udi LGA,Enugu state, Nigeria.<br> The locals believe the water has healing powers and is capable of driving away evil spirits if used. The Awhum Waterfall is also a popular tourist location in Nigeria</p>
<p><a href="" class="read-more-btn">Read more</a>
<span><i class="fa fa-thumbs-o-up"></i>7000 people like this, <i class="a fa-comment-o"></i>10...</span>
</p>
</div>
</div>
<div class="col-md-4">
<div class="single-blog">
<p class="blog-meta">By admin <span>May 10, 2020</span></p>
<img src="./../images/ynk.png">
<h2><a href="#">Bauchi, Nigeria</a></h2>
<p class="blog-text">Yankari National Park
It is a large wildlife park located in the south-central part of Bauchi State, in northeastern Nigeria. It covers an area of about 2,244 square kilometres and is home to several natural warm water springs, as well as a wide variety of flora and fauna </p>
<p><a href="" class="read-more-btn">Read more</a>
<span><i class="fa fa-thumbs-o-up"></i>7000 people like this, <i class="a fa-comment-o"></i>10...</span>
</p>
</div>
</div>
<div class="col-md-4">
<div class="single-blog">
<p class="blog-meta">By admin <span>May 10, 2020</span></p>
<img src="./../images/obd.png">
<h2><a href="#">Cross-rivers, Nigeria</a></h2>
<p class="blog-text">
<p class="desc">this is the most popular tourist attractions in Nigeria. it’s is actually located on a plateau at the Sankwala mountains. It’s weather conditions here are amazing </p>
<p><a href="" class="read-more-btn">Read more</a>
<span><i class="fa fa-thumbs-o-up"></i>7000 people like this, <i class="a fa-comment-o"></i>10...</span>
</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="page-header">
<h1 style="color: darkorange">Top tourist destinations in Africa</h1>
<p class="lead" style="color: #fff">Given the annual visits</p>
</div><!-- page-header -->
<table class="table table-striped table-bordered table-hover table-condensed" id="ttt">
<thead>
<tr style="color: darkorange">
<th>Countries</th>
<th>Cities</th>
<th>Number of tourists (Million)</th>
</tr>
</thead>
<tbody>
<tr class="success" style="color: #fff">
<td>South Africa</td>
<td>Morocco</td>
<td>Egypt</td>
</tr>
<tr style="color: #fff">
<td class="info">Capetown</td>
<td>Rabat</td>
<td class="warning">Cairo</td>
</tr>
<tr class="danger" style="color: #fff">
<td>15.05</td>
<td>12.3</td>
<td>11.35</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>