-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (62 loc) · 1.99 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Wanderlust</title>
<link rel="icon" href="favicon.png" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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://content.codecademy.com/courses/intermediate-javascript-requests/wanderlust/logo.svg"
alt="logo"
/>
</header>
<main>
<h1>Where do you want to land?</h1>
<form autocomplete="off">
<input class="input" type="text" id="city" placeholder="City..." />
<input class="submit" type="submit" id="button" value="Submit" />
</form>
</main>
<h3 class="status"></h3>
<div class="container">
<div id="destination"></div>
<div class="sectiontitle">
<h2>CURRENT WEATHER</h2>
</div>
<section id="weather">
<div class="weather" id="weather1"></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>
<div class="venue" id="venue4"></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>