-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtravellog.html
46 lines (46 loc) · 1.79 KB
/
travellog.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/normalize.css">
<link href='http://fonts.googleapis.com/css?family=Playball' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/travel.css">
<title>Travel Log</title>
</head>
<body>
<header>
<h1 class="stitching">Travel Log</h1>
</header>
<section id="introTravel">
<p class= "blurb">Had a blast on the athletic road trip of your dreams? More adventures ahead? Keep your trip stats right here in a centralized log. Easy. Convenient. To keep you on the road to your next destination.</p>
</section>
<h1>Where I've been</h1>
<section class ="map">
<canvas id = "myCanvas" height ="500px" width ="800px"></canvas>
</section>
<section>
<form action="" id="team">
<fieldset id ="list">
<select action="" id ="drop"></select>
<label for ="date">Date:</label>
<input id="date" type="text" name="date" size="12" maxlength="30" />
<label for ="url">Photo album URL:</label>
<input id = "url" type="text" name="url" size= "12"/>
<label for ="words">Comment:</label>
<input id = "words" type="text" name="words" size="12"/>
</fieldset>
</form>
<button type="submit" id="submit">Log trip!</button>
</section>
<section id= "been">
</section>
<footer class="footer">
<a href="about.html">About the Authors</a>
<a href="map.html">Back to your Map</a>
<a href="index.html">Log Out</a>
</footer>
<script src="js/travel.js" type="text/javascript"></script>
</body>
</html>