forked from udacity/course-collaboration-travel-plans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 722 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
<!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>Paris</h2>
</div>
<div class="destination" id="barcelona">
<h2>Berlin</h2>
</div>
<div class="destination" id="beijing">
<h2>Beijing</h2>
</div>
<div class="destination" id="tokyo">
<h2>Tokyo</h2>
</div>
</div>
</div>
</body>
</html>