-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (45 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather-Dashboard</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class='frame group'>
<div class='banner'>
Weather Dashboard
</div>
<div class='wrapper group'>
<div class='panel group'>
<form class='group' id="search-form">
<label>Search for a City:</label>
<input type="text" id="city-input" class='city-input'/>
<button type="submit" class='formButton' id='add-city'> <img
src="search_white.svg"
alt="triangle with all three sides equal"
height="20"
width="20" /></button>
</form>
<div id="city-button-block" class="city-button-block">
</div>
<div id="clear-all" class="clear-all">Clear all</div>
</div>
<div class='base group'>
<div id="todays-weather-info" class="todays-weather-info">
</div>
<div class="weather-icon">
<img id="weather-icon" src="" alt="weather icon"/>
</div>
<p class='forecast-title'>5-day Forecast:</p>
<div id="5-day-forecast" class="five-day-forecast">
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="script.js"></script>
</body>
</html>