-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesination.html
81 lines (63 loc) · 2.21 KB
/
desination.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
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Desinations</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Header session starts -->
<header class="header">
<section class="flex">
<a href="index.html" class="logo">Travia</a>
<nav class="navbar">
<a href="index.html">home</a>
<a href="about.html">about</a>
<a href="tours.html">tours</a>
<a href="desination.html">destination</a>
<a href="contact.html">contact</a>
</nav>
<div id="menu-btn" ><i class="fa-solid fa-bars"></i></div>
</section>
</header>
<!-- header section ends -->
<!-- desinations section starts -->
<div class="destination">
<h1 class="heading">Destinations place</h1>
<section class="grid">
<div class="picture">
<img src="desi-1.jpg" alt="" height="200">
<h3><span>istanblu</span></h3>
</div>
<div class="picture">
<img src="desi-2.jpg" alt="" height="200">
<h3><span>paris</span></h3>
</div>
<div class="picture">
<img src="desi-3.jpg" alt="" height="200">
<h3><span>New York</span></h3>
</div>
<div class="picture">
<img src="desi-4.jpg" alt="" height="200">
<h3><span>london</span></h3>
</div>
<div class="picture">
<img src="desi-5.jpg" alt="" height="200">
<h3><span>calforia</span></h3>
</div>
<div class="picture">
<img src="desi-6.jpg" alt="" height="200">
<h3><span>Tokyo</span></h3>
</div>
</section>
</div>
<!-- desinations section ends -->
<!-- custom js file link -->
<script src="script.js"></script>
</body>
</html>