-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (77 loc) · 2.76 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
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>Weather App</title>
<meta charset="UTF-8" />
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</script>
<link rel="stylesheet" href="./src/styles.css">
</head>
<body>
<div class="container">
<div class="weather-app-wrapper">
<div class="weather-app">
<div class="overview">
<h1>City Name</h1>
<ul>
<li id="input-city-timestamp"><span id="date"></li>
<li id="updated-timestamp">Last Updated: <span id="local-date"></span> local time.</li>
<li id="weather-summary"></li>
</ul>
</div>
<div class="row">
<div class="col-6">
<div class="clearfix weather-temperature">
<img src="" alt="no image" id="weather-icon" class="float-left" />
<div class="float-left weather-detail">
<strong id="tempNum"></strong
><span class="temp-units"
><a href="#" id="fahrenheit" class="active">°F</a> |
<a href="#" id="celsius">°C</a></span
>
</div>
</div>
</div>
<div class="col-6">
<ul>
<li>Feels Like: <span id=feels-like></span>°</li>
<li>Humidity: <span id=humidity>0</span>%</li>
<li>Wind: <span id=wind>0</span> mph</li>
</ul>
</div>
</div>
<div class="future-forecast-title text-center">
<h2>5 Day Forecast:</h2>
</div>
<div class="future-forecast" id="five-day-forecast">
</div>
<div class="row justify-content-around">
<form id="city-form" class="mt-5">
<input
type="search"
placeholder="Enter a city..."
autofocus="on"
autocomplete="off"
class="form-control"
id="city-input" />
</div>
<div class="row justify-content-around mt-3">
<input type="submit" id="search" value="Search"/>
</form>
<button id="locate" class="w-200"/>My Location</button>
</div>
</div>
</div>
<footer class="text-center">
<small>
<a
href="https://github.com/bexter89/weather-app"
target="_blank"
>Open-source code</a> by Rebekah Cruz
</small>
</footer>
</div>
<script src="src/index.js"></script>
</body>
</html>