forked from MultiverseLearningProducts/test-html-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travelerz Agency</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
</head>
<body>
<h1>Hello, it's me...</h1>
<h4>Terrific Travel at Tremendous Discounts</h4>
<p id="motivation">Our Travel Agents will get you where you want to go, when you want to go, for the price you want to pay!</p>
<div class="picture-container">
<img class="feature-image" src="https://the-travel-masters.com/wp-content/uploads/2012/06/Eiffel-Tower.jpg" alt="Eiffel Tower">
</div>
<a href="https://www.toureiffel.paris/en">More Info on Paris</a>
<ul>
<li>Visit the Eiffel Tower</li>
<li>Visit the Louvre</li>
<li>Visit Notre Dame Cathedral</li>
<li>Visit Saint-Chapelle</li>
<li>Visit la Musée d'Orsay</li>
</ul>
<ol>
<li>Eat all the crepes</li>
<li>Stroll along the Seine</li>
<li>Have some coffee and pastries at Cedric Grolet</li>
</ol>
</body>
</html>