-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (68 loc) · 3.01 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
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>API Weather</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1> What's the weather looking like this week?</h1>
<span style='font-size:70px;'>☔</span>
<span class="emoji" style='font-size:70px;'>🌡</span>
<span style='font-size:70px;'>🤔</span>
<!-- <input type="number" name="" value=""> -->
<span class="city-1">City: </span>
<input class= "city" type="text" name="" value="">
<button type="button" name="button">Get Forecast</button>
<div class="current">
<h2>Today's Weather<span></span></h2>
<span>Date:</span><h3 class="todays-date"></h3>
<h2 class="current-text"></h2>
<h2 class="current-temp"></h2><span>°F</span>
<br>
<span class="rain">Chance of Rain:</span><h3 class="chance-rain"></h3><span>%</span>
<img class="current-icon" src="" alt="weather-icon"></img>
</div>
<!-- <img src="" alt=""> -->
<h3>Weather Forecast for the Next Few Days</h3>
<div class="One">
<span>Date:</span><h3 class="forecast-date-one"></h3>
<br>
<h3 class="forecast-temp-one"></h3><span>°F</span>
<br>
<span class="rain">Chance of Rain:</span><h3 class="forecast-rain-one"></h3><span>%</span>
<h3 class="forecast-text-one"></h3>
<img class="forecast-icon-one" src="" alt="weather-icon"></img>
</div>
<div class="Two">
<span>Date:</span><h3 class="forecast-date-two"></h3>
<br>
<h3 class="forecast-temp-two">test</h3><span>°F</span>
<br>
<span class="rain">Chance of Rain:</span><h3 class="forecast-rain-two"></h3><span>%</span>
<h3 class="forecast-text-two"></h3>
<img class="forecast-icon-two" src="" alt="weather-icon"></img>
</div>
<!-- <h3 class="forecast-date-three">test</h3>
<p>°F</p><h3 class="forecast-temp-three">test</h3>
<h3 class="forecast-rain-three">test</h3>
<h3 class="forecast-text-three">test</h3>
<img class="forecast-icon-three" src="" alt="weather-icon"></img>
<h3 class="forecast-date-four">test</h3>
<p>°F</p><h3 class="forecast-temp-four">test</h3>
<h3 class="forecast-rain-four">test</h3>
<h3 class="forecast-text-four">test</h3>
<img class="forecast-icon-four" src="" alt="weather-icon"></img>
<h3 class="forecast-date-five">test</h3>
<p>°F</p><h3 class="forecast-temp-five">test</h3>
<h3 class="forecast-rain-five">test</h3>
<h3 class="forecast-text-five">test</h3>
<img class="forecast-icon-five" src="" alt="weather-icon"></img> -->
<!-- <div id="weatherapi-weather-widget-4"></div>
<script type='text/javascript' src='https://www.weatherapi.com/weather/widget.ashx?loc=2594348&wid=4&tu=2&div=weatherapi-weather-widget-4' async></script>
<noscript><a href="https://www.weatherapi.com/weather/q/north-grafton-2594348" alt="Hour by hour North Grafton weather">10 day hour by hour North Grafton weather</a></noscript> -->
<script type="text/javascript" src="main.js"></script>
</body>
</html>