-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult.html
41 lines (33 loc) · 878 Bytes
/
result.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
<!DOCTYPE html>
<html>
<head>
<title>CITY</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Monda" rel="stylesheet">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script type="text/javascript" src="fromISO.js"></script>
<script type="text/javascript" src="result.js"></script>
</head>
<body>
<div id="result_main" class="default">
<div id="location_result">
<div id="city_result"></div>
<div id="country_result"></div>
</div>
<div id="todays_weather">
<div id="title">TODAY'S WEATHER</div>
<div id="data">
<div id="current"></div>
<div id="min_max">
<div id="min"></div>
<div id="max"></div>
</div>
</div>
</div>
<div id="humidity_wind">
<div id="humidity"></div>
<div id="wind"></div>
</div>
</div>
</body>
</html>