-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
70 lines (59 loc) · 1.77 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Wanderlust</title>
<link rel="stylesheet" type="text/css" href="public/reset.css" />
<link rel="stylesheet" type="text/css" href="public/style.css" />
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro|Work+Sans" rel="stylesheet">
</head>
<body>
<header>
<img class="logo" src="https://s3.amazonaws.com/codecademy-content/courses/intermediate-javascript-requests/wanderlust/logo.svg" alt="logo" />
</header>
<main>
<h1>Where do you want to land?</h1>
<form autocomplete="off">
<input type="text" id="city">
<button id="button" type="submit">Submit</button>
</form>
</main>
<div class="container">
<div id="destination">
</div>
<div class="sectiontitle">
<h2>WEATHER</h2>
</div>
<section id="weather">
<div class="weather" id="weather1">
</div>
<div class="weather" id="weather2">
</div>
<div class="weather" id="weather3">
</div>
<div class="weather" id="weather4">
</div>
</section>
<div class="sectiontitle">
<h2>TOP ATTRACTIONS</h2>
</div>
<section id="venues">
<div class="venue" id="venue1">
</div>
<div class="venue" id="venue2">
</div>
<div class="venue" id="venue3">
</div>
</section>
<footer>
</footer>
</div>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="public/helpers.js"></script>
<script src="public/main.js"></script>
</body>
</html>