-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<title>Excursion</title>
<link href="./resources/css/style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<!-- Main Section of Page -->
<div>
<h1>Discover hidden places in the world around you</h1>
<p><a class="download" href="https://play.google.com/store/apps?hl=en">Download Excursion (Coming soon!)</a></p>
<video autoplay muted loop>
<source src="resources/videos/excursion.mp4" type="video/mp4">
</video>
</div>
<!-- First Supporting Part of Page -->
<div>
<h2>Your personal travel guide</h2>
<p>Excursion remembers places you like, and recommends new points of interest around you.</p>
<p><img src="resources/images/camp.jpg" alt="Picturesque view of a campsite at dusk, in the desert."></p>
</div>
<!-- Second Supporting Part of Page -->
<div>
<!-- I'm wrapping the images in paragraph tags so that they appear more evenly spaced and not directly on top of each other -->
<p><img class="phone" src="resources/images/phone.png"></p>
<h2>Coming Soon for iPhone and Android</h2>
<p><a class="download" href="https://play.google.com/store/apps?hl=en">Download Excursion (Coming soon!)</a></p>
</div>
<!-- Footer -->
<footer>
<p>© Excursion</p>
</footer>
</body>
</html>