-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<!-- Excursion project by Gregory Ardison-Gardner -->
<title>Excursion</title>
<link href="./resources/css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- Video section. -->
<div class="video">
<h1>Discover hidden places in the world around you</h1>
<p><a href="#">Download Excursion (Coming soon!)</a></p>
<video src="./resources/video/excursion.mp4" autoplay loop>Your browser does not support this video.</video>
</div>
<!-- Image section. -->
<div class="image">
<h2>Your personal travel guide</h2>
<p>Excursion remembers places you like, and recommends new points of interest around you.</p>
<img src="./resources/images/camp.jpg" alt="A campsite at night.">
</div>
<!-- Download section. -->
<div class="download">
<p><img src="./resources/images/phone.png" alt="A line art graphic of a smart phone."></p>
<h2>Coming Soon for iPhone and Android</h2>
<p><a href="#">Download Excursion (Coming Soon!)</a></p>
</div>
<!-- Footer -->
<span class="footer"><p>© Excursion</p></span>
</body>
</html>