-
Notifications
You must be signed in to change notification settings - Fork 0
/
traveltips.html
106 lines (106 loc) · 4.18 KB
/
traveltips.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
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<title>London</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<div id="menu">
<nav id="headerlinks">
<ul>
<li><a href="register.html">Register</a></li>
<li><a href="signin.html">Sign in</a></li>
<li><a href="#">Contact us</a></li>
</ul>
</nav>
<nav id="primarynav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="places.html">Places</a></li>
<li><a href="transport.html">Transport</a></li>
<li><a href="traveltips.html" class="current">Travel Tips</a></li>
</ul>
</nav>
</div>
<main>
<ul class="breadcrumbs">
<li><a href="index.html">Home</a></li>
<li>Travel Tips</li>
</ul>
<header>
<h1>Travel tips</h1>
</header>
<div id="container_tips">
<article class=" flexbox flexbox_tips">
<header>
<h2>1. Language</h2>
<figure>
<!-- Image from https://unsplash.com/photos/ucUB9wxkPgY -->
<img src="media/images/language.jpg" alt="English"/>
<figcaption class="source">Image source <a class="intersite_link" href="https://unsplash.com/photos/ucUB9wxkPgY" target="_blank"> here</a></figcaption>
</figure>
</header>
<p>If you want to travel around London without any problems, you should learn some basic English phrases.</p>
</article>
<article class=" flexbox flexbox_tips">
<header>
<h2>2. Currency</h2>
<figure>
<!-- Image from https://unsplash.com/photos/ROQzKIAdY78 -->
<img src="media/images/currency.jpg" alt="Currency"/>
<figcaption class="source">Image source <a class="intersite_link" href="https://unsplash.com/photos/ROQzKIAdY78" target="_blank"> here</a></figcaption>
</figure>
</header>
<p>Currency in London like in the rest of England is Pound Sterling.</p>
</article>
<article class=" flexbox flexbox_tips">
<header>
<h2>3. Oyster Card</h2>
<figure>
<!-- Image from https://unsplash.com/photos/CezpbuAU-LQ -->
<img src="media/images/oyster_card.jpg" alt="Oyster Card"/>
<figcaption class="source">Image source <a class="intersite_link" href="https://unsplash.com/photos/CezpbuAU-LQ" target="_blank"> here</a></figcaption>
</figure>
</header>
<p>Oyster Card is the cheapest way to travel in London. You can use it for metro, bus and tram services. Please find more information about it <a class="intersite_link" href="https://oyster.tfl.gov.uk/oyster/entry.do" target="_blank">here</a>.</p>
</article>
<article class=" flexbox flexbox_tips">
<header>
<h2>4. Planning</h2>
<figure>
<!-- Image from https://unsplash.com/photos/9n1USijYJZ4 -->
<img src="media/images/planning.jpg" alt="Planning"/>
<figcaption class="source">Image source <a class="intersite_link" href="https://unsplash.com/photos/9n1USijYJZ4" target="_blank"> here</a></figcaption>
</figure>
</header>
<p>Plan your journey and do your bookings in advance.</p>
</article>
<article class=" flexbox flexbox_tips">
<header>
<h2>5. Free Museums</h2>
<figure>
<!-- Image from https://unsplash.com/photos/ucUB9wxkPgY -->
<img src="media/images/free_museums.jpg" alt="Free museums"/>
<figcaption class="source">Image source <a class="intersite_link" href="https://unsplash.com/photos/ucUB9wxkPgY" target="_blank"> here</a></figcaption>
</figure>
</header>
<p>There are museums in London that you can visit for free: British Museum, Natural History Museum, National Gallery, Tate Modern etc.</p>
</article>
</div>
</main>
<footer>
<nav id="footerlinks">
<ul>
<li><a href="#">Copyright</a></li>
<li><a href="#">Accessibility</a></li>
</ul>
</nav>
</footer>
</body>
</html>