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 pathtourist-highlights.html
89 lines (89 loc) · 4.45 KB
/
tourist-highlights.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tourist Highlights - Travel Stockholm</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<!-- <link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico"> -->
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">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="index.html"><img src="img/stockholm-logo.svg.png"></a></li>
<li><a href="#">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>
<h1>Travel Stockholm - Tourist Highlights</h1>
<div class="row">
<a href="https://www.visitstockholm.com/see--do/attractions/the-vasa-museum/">
<div class="col-3">
<h2>The Vasa Museum</h2>
<img src="https://www.visitstockholm.com/globalassets/see-and-do/attractionssevardheter/the-vasa-museum_rectangle.jpg?preset=detail_big_retina">
<p>The Vasa is the only preserved seventeenth-century ship in the world and a unique art treasure. Over 95% of the ship is in original condition!</p>
</div>
</a>
<a href="https://www.visitstockholm.com/see--do/attractions/the-royal-palace/">
<div class="col-3">
<h2>The Royal Palace</h2>
<img src="https://www.visitstockholm.com/contentassets/b1443c5b40144cd7b1a6eff9a4855c7d/the-royal-palace_rectangle.jpg?preset=detail_big_retina">
<p>Welcome to one of the largest palaces in Europe! The Royal Palace is the official residence of His Majesty the King of Sweden, with over 600 rooms.</p>
</div>
</a>
<a href="https://www.visitstockholm.com/see--do/attractions/fotografiska/">
<div class="col-3">
<h2>Fotografiska</h2>
<img src="https://www.visitstockholm.com/globalassets/see-and-do/attractionssevardheter/fotografiska_rectangle.jpg?preset=detail_big_retina">
<p>Fotografiska is one of the world’s largest meeting places for contemporary photography. Several large and small galleries are presented annually!</p>
</div>
</a>
</div>
<div class="row">
<a href="https://www.visitstockholm.com/see--do/attractions/moderna-museet/">
<div class="col-3">
<h2>Moderna Museet</h2>
<img src="https://www.visitstockholm.com/globalassets/see-and-do/attractionssevardheter/moderna-museet_rectangle.jpg?preset=detail_big_retina">
<p>Experience one of Europe's foremost collections of art from the twentieth century to today, featuring works by artists including Picasso, Dali, Derkert, and Matisse.</p>
</div>
</a>
<a href="https://www.visitstockholm.com/see--do/attractions/the-city-hall/">
<div class="col-3">
<h2>The City Hall</h2>
<img src="https://www.visitstockholm.com/globalassets/see-and-do/attractionssevardheter/the-city-hall_rectangle.jpg?preset=detail_big_retina">
<p>Stockholm City Hall, with its spire featuring the golden Three Crowns, is one of the most famous silhouettes in Stockholm. It is a great example of the Sweden's architecure skills.</p>
</div>
</a>
<a href="https://www.visitstockholm.com/see--do/attractions/abba-the-museum--swedish-music-hall-of-fame/">
<div class="col-3">
<h2>The ABBA Museum</h2>
<img src="https://www.visitstockholm.com/globalassets/see-and-do/attractionssevardheter/abba-the-museum--swedish-music-hall-of-fame_rectangle.jpg?preset=detail_big_retina">
<p>ABBA The Museum is more than just a museum. Sure, the permanent exhibition is chock full of ABBA memorabilia like stage outfits, instruments, gold records, awards and much more.</p>
</div>
</a>
</div>
<div class="row full-width-row">
<p>Content on this page are not in any way owned or affiliated with Travel Stockholm. All images belong to their respective owners.<em>Source: <a href="https://www.visitstockholm.com/guides/stockholm-top-10/">Things to do in Stockholm - Top 10 - Visitstockholm</a></em></p>
</div>
<footer>
<em>Copyright Travel Stockholm, 2018</em>
<div id="pagination">
<ul>
<li><a href="sitemap.html">Sitemap</a></li>
<li><a href="index.html">Home</a></li>
<li><a href="accomodation.html">Accomodation</a></li>
<li><a href="food-in-stockholm.html">Food in Stockholm</a></li>
<li>Tourist Highlights</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>
</body>
</html>