-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (49 loc) · 1.39 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
<!--
//input
.button //data load button
.inputValue //input for city
//output
.name //city name
.desc //weather description
.temp //temperature
.humi //humidity
.pres //pressure
.wspd //wind speed
.wang //wind angle
.aqi //air quality
.pm10 //pm10
.pm25 //pm25
.lat //latitude output
.lon //longitude output
-->
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Kubusweather</title>
<link rel="stylesheet" href="css/master.css">
</head>
<body>
<h1>Current data:</h1>
<p>Status: <span class="name"></span></p>
<p>Description: <span class="desc"></span></p>
<p>Temperature: <span class="temp"></span></p>
<p>Humidity: <span class="humi"></span></p>
<p>Pressure: <span class="pres"></span></p>
<p>Wind speed: <span class="wspd"></span></p>
<p>Wind angle: <span class="wang"></span></p>
<h1>Air Quality:</h1>
<p>AQI: <span class="aqi"></span></p>
<p>PM<sub>10</sub>: <span class="pm10"></span></p>
<p>PM<sub>2.5</sub>: <span class="pm25"></span></p>
<h1>3-hour forecast:</h1>
<table class="forecast-generate">
</table>
<h1>Other data:</h1>
<p>Latitude: <span class="lat"></span></p>
<p>Longitude: <span class="lon"></span></p>
</body>
<script src="js\script.js"></script>
<script src="js\main.js"></script>
<!-- <script src="writecode.js"></script> -->
</html>