-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.5 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
<!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">
<title>InfoSafaris</title>
<link rel="stylesheet"type="text/css"href="home.css">
</head>
<body>
<nav>
<div class="row">
<p><span id="big">I</span>nfo<span id="big">S</span>afari</p>
</div>
<div class="row">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About us</a></li>
<li><a href="./destinations.html">Destination</a></li>
<li><a href="./contact_us.html">Contact</a></li>
</ul>
</div>
</nav>
<div class="content">
<p>We are all about <br>
InfoSafaris
</p>
</div>
<div class="content2">
<p>We take vacations so that we can relax <br>
from our normal work.
</p>
</div>
<div class="learnmore">
<a href="./destinations.html"><input type="submit" value="Learn more"></a>
</div>
<footer>
<div class="text">
© Copyright 2021 InfoSafaris, All right reserved.
</div>
<div class="icons">
<img src="images/facebook.png" wisth="30px" height="30px" alt="">
<img src="images/twitter.png" wisth="30px" height="30px" alt="">
<img src="images/instagram.png" wisth="30px" height="30px" alt="">
</div>
</footer>
</body>
</html>