-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (78 loc) · 2.17 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
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Travel Website</title>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
<link
href="font.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header>
<div>
<i class="fas fa-bus"></i>
<p>Travel</p>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Photographs</a></li>
<li><a href="#">Travel</a></li>
<li><a href="form.html">Book now</a></li>
</ul>
</nav>
</header>
<section class="titles">
<h1>Sigiriya Travel Website</h1>
<p>
Referred by locals as the Eighth Wonder
of the World this ancient palace and fortress
complex has significant archaeological importance
and attracts thousands of tourists every year.
It is probably the most visited tourist destination of Sri Lanka.
</p>
</section>
<section class="container-boxes">
<div class="box">
<div class="icon">
<a href="form.html"><i class="fas fa-book"></i>
</div>
<div class="text">
<h3>Book Now</h3>
<p>Book now and get your marvels experience now.</p>
</a>
</div>
</div></a>
<div class="box">
<div class="icon">
<a href=""><i class="fas fa-bus"></i></a>
</div>
<div class="text">
<a href="">
<h3>Travel</h3>
<p>Travel with us so you can get the best experience.</p>
</a>
</div>
</div>
<div class="box">
<div class="icon">
<a href=""><i class="fas fa-images"></i></a>
</div>
<div class="text">
<a href="">
<h3>Photographs</h3>
<p>See the photographs, we are sure that you will like to visit.</p>
</a>
</div>
</div>
</section>
</body>
</html>