forked from udacity/course-collaboration-travel-plans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 844 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Travels</title>
<meta name="description" content="">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="container">
<div class="destination-container">
<div class="destination" id="belize">
<h2>Belize</h2>
</div>
<div class="destination" id="barcelona">
<h2>Barcelona</h2>
</div>
<div class="destination" id="florida">
<h2>Florida</h2>
</div>
<div class="destination" id="paris">
<h2>Paris</h2>
</div>
<div class="destination" id="scotland">
<h2>Scotland</h2>
</div>
</div>
</div>
</body>
</html>