-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (62 loc) · 2.38 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/style.css">
<title>Position-Level-3_5</title>
</head>
<body>
<div class="rad">
<div class="text">
<h2>RIDE</h2>
<p>to your next DESTINATION</p>
</div>
</div>
<main>
<nav>
<a class="logo" href="#">B-RIDE</a>
<ul>
<li><a href="#">BLOG</a></li>
<li><a href="#">WORK</a></li>
<li><a href="#">CONTACT</a></li>
</ul>
</nav>
<section class="loc">
<h1>LOCATIONS</h1>
<div class="linie"></div>
<div class="images">
<img src="./assets/img/img1.png" alt="">
<img src="./assets/img/img2.png" alt="">
<img src="./assets/img/img3.png" alt="">
<img src="./assets/img/img4.png" alt="">
<img src="./assets/img/img5.png" alt="">
<img src="./assets/img/img6.png" alt="">
</div>
</section>
<section class="tour">
<h2>2019 Tour dates</h2>
<ul>
<li>Sept 19 - 29 - Deluxe Haute Route– Chamonix to Zermatt – Classic trek has a new standard
<span class="rot">SOLD OUT</span>
</li>
<li>Sept 26 - Oct 5 - Scenic Alps by Rail– The Grand Train Tour of Switzerland
<span class="rot"> SOLD OUT</span>
</li>
<li>Sept 29 - Oct 5 - Discover Swiss Cuisine - Italian Inspired - A culinary adventure in Lugano
<span class="rot">SOLD OUT</span>
</li>
<li>Oct 9 - 18 - Scenic Alps by Rail – The Grand Train Tour of Switzerland
<span class="rot">ONLY 4 SPOT AVAILABLE</span>
</li>
<li>Dec 3 - 11 - Christmas in Switzerland - Enjoy authentic Switzerland at its holiday best
<span class="grün">AVAILABLE</span>
</li>
<li>Dec 5 - 13 - Christmas in Switzerland - Enjoy authentic Switzerland at its holiday best
<span class="grün">AVAILABLE</span>
</li>
</ul>
</section>
</main>
</body>
</html>