-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdestinations.html
78 lines (56 loc) · 1.99 KB
/
destinations.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Destination</title>
<link rel="stylesheet" href="css/style.css">
</head>
<div class="header-div">
<header class="header">
<a href="index.html">Jet Set Journey</a>
<a href="index.html"><img src="img/logo.jpg"></a>
<hr style="width:80%">
</header>
<center>
<nav class="menu">
<a href="index.html">HOME</a>
<a href="lgin.html">LOG IN</a>
<a href="destinations.html">DESTINATIONS</a>
<a href="traveltips.html">TRAVEL TIPS</a>
<a href="contact.html">CONTACT</a>
</nav>
</center>
</div>
<body>
<div class="container">
<div class="row">
<div class="column">
<a href="Italy.html">
<img class="destination" src="img/Venice.jpg" style="width:100%"></a>
<figcaption>Meticulous Italy - Soulmate Special
</figcaption>
</div>
<div class="column">
<a href="Bali.html">
<img class="destination" src="img/Bali.jpg" style="width:100%"></a>
<figcaption>Discover Bali - Top Attractions </figcaption>
</div>
</div>
<div class="row">
<div class="column">
<a href="Dubai.html">
<img class="destination" src="img/Dubai.jpg" style="width:100%"></a>
<figcaption>Best of Dubai Adventure </figcaption>
</div>
<div class="column">
<a href="Australia.html">
<img class="destination" src="img/Australia.jpg" style="width:100%"></a>
<figcaption>Australian Holiday</figcaption>
</div>
</div>
<br>
<a href="Combined form.html" class="book-now-button">Book Now</a>
<br>
</div>
</body>
</html>