-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (80 loc) · 2.49 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Discover Iceland</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Moderustic:wght@300..800&display=swap" rel="stylesheet">
</head>
<body>
<main>
<div class="home" id="home">
<h1>Discover Iceland</h1>
<p class="subtitle">The land of ice and fire</p>
<a href="#tours" class="btn-home">View Tours</a>
</div>
<!-- Tours -->
<section class="tours" id="tours">
<h3>Our tours</h3>
<hr>
<div class="container-tours">
<div class="tours-card">
<h4>Golden Circle</h4>
<span>100€</span>
<p>✔️ Geysir</p>
<p>✔️ Gullfoss</p>
<p>✔️ Þingvellir</p>
<p>✔️ Kerið</p>
<a href="#contact">Book the tour</a>
</div>
<div class="tours-card">
<h4>Southern Coast</h4>
<span>250€</span>
<p>✔️ Goðafoss</p>
<p>✔️ Seljalandfoss</p>
<p>✔️ Vík</p>
<p>✔️ Jokursárlon</p>
<a href="#contact">Book the tour</a>
</div>
<div class="tours-card">
<h4>Snæfellsnes</h4>
<span>500€</span>
<p>✔️ Arnastrapi</p>
<p>✔️ Rauðfeldsgjá Gorge</p>
<p>✔️ Songhellir Cave</p>
<p>✔️ Bjarnafoss</p>
<a href="#contact">Book the tour</a>
</div>
</div>
</section>
<!-- Contact -->
<section class="contact-section" id="contact">
<h2>Contact Us</h2>
<div class="container-form">
<form class="form-block">
<div class="form-group">
<label for="firstname">Your First Name</label>
<input type="text" placeholder="First Name" required id="firstname">
</div>
<div class="form-group">
<label for="lastname">Your Last Name</label>
<input type="text" placeholder="Last Name" required id="lastname">
</div>
<div class="form-group">
<textarea id="txt" placeholder="Your message" required></textarea>
</div>
<div class="form-group">
<input type="submit" value="SEND" class="button-sub">
</div>
</form>
</div>
</section>
</main>
<!-- Footer -->
<footer>
all rights reserved ©
</footer>
</body>