This repository has been archived by the owner on Oct 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (72 loc) · 3.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home - Travel Stockholm</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" href="css/index.css">
<!-- <link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico"> -->
<script type="text/javascript" src="js/slides.js"></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="accomodation.html">Accomodation</a></li>
<li><a href="food-in-stockholm.html">Food in Stockholm</a></li>
<li><a href="#"><img src="img/stockholm-logo.svg.png"></a></li>
<li><a href="tourist-highlights.html">Tourist Highlights</a></li>
<li><a href="getting-around.html">Getting Around</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
</ul>
</nav>
</header>
<div id="slideshow">
<img src="img/slideshow/img-1.jpg" alt="Image of Sweden" id="slideimg">
</div>
<div class="row">
<div class="col-3">
<h2>Accomodation</h2>
<p>Travel Stockholm partners with many large, recognised companise to provide a great deal on accomodation for all. Including but not limited to the <em>Radisson Blu Waterfront Hotel</em>! Click <a href="accomodation.html">here</a> to see our accomodation options!</p>
</div>
<div class="col-3">
<h2>Tourist Highlights</h2>
<p>Stockholm has many beautiful sights, including but not limited to the <em>Masa</em>, a maritime museaum and also the <em>Fotografiska</em>, one of the world's largest contemporary photo galleries! Click <a href="tourist-highlights.html">here</a> to see our tourist highlights!</p>
</div>
<div class="col-3">
<h2>Surrounding Areas</h2>
<p>Apart from many amazing sights to see, it also has great food! Including but not limited to the Contemporary brasserie, <em>Ekstedt</em>, <em>Operakällaren</em> serving it's gourmet European cuisine. Click a <a href="food-in-stockholm.html">here</a> to see more food optios!</p>
</div>
</div>
<div class="row full-width-row">
<h2>Reasons to travel to Stockholm</h2>
<ol>
<li><strong>1.</strong> It’s one of Scandinavia’s most beautiful cities</li>
<li><strong>2.</strong> Lush island parks</li>
<li><strong>3.</strong> All the Abba you could want</li>
<li><strong>4.</strong> Pippi Longstocking</li>
<li><strong>5.</strong> Its Viking history</li>
</ol>
<em>Source: <a href="https://www.telegraph.co.uk/travel/destinations/europe/sweden/stockholm/articles/reasons-to-visit-stockholm/">11 reasons to make Stockholm your next city break - The Telegraph UK</a></em>
</div>
<footer>
<em>Copyright Travel Stockholm, 2018</em>
<div id="pagination">
<ul>
<li><a href="sitemap.html">Sitemap</a></li>
<li>Home</li>
<li><a href="accomodation.html">Accomodation</a></li>
<li><a href="food-in-stockholm.html">Food in Stockholm</a></li>
<li><a href="tourist-highlights.html">Tourist Highlights</a></li>
<li><a href="getting-around.html">Getting Around</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
</ul>
</div>
<em>Designed by Ally S</em>
</footer>
<script type="text/javascript">
changeImage()
</script>
</body>
</html>