forked from eiworkexperience18/eiworkexperience18.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (42 loc) · 1.38 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Code First Girls: My dream destination</title>
<link rel="stylesheet" href="./css/base.css" />
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<header class="site-header">
<h1 class="site-title">My dream destination: [Destination]</h1>
<nav class="site-menu">
<ul>
<li>
<a href="#sectionWishlist">Wishlist</a>
</li>
<li>
<a href="#sectionGallery">Gallery</a>
</li>
<li>
<a href="#sectionAbout">About</a>
</li>
</ul>
</nav>
</header>
<section class="section section-intro" id="sectionIntro">
<h2 class="section-heading">Intro</h2>
<img src="./images/sample-image.jpg" alt="Eiffel Tower">
</section>
<section class="section section-wishlist" id="sectionWishlist">
</section>
<section class="section section-gallery" id="sectionGallery">
</section>
<section class="section section-about" id="sectionAbout">
</section>
<footer class="site-footer">
<span>© Code First Girls at Expedia, 2018</span>
</footer>
<script src="./js/app.js"></script>
</body>
</html>