forked from udacity/course-collaboration-travel-plans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (27 loc) · 735 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
<!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>Sao Paolo</h2>
</div>
<div class="destination" id="barcelona">
<h2>Rio De janario</h2>
</div>
<div class="destination" id="barcelona">
<h2>Norway</h2>
</div>
</div>
</div>
</body>
</html>