This repository was archived by the owner on Mar 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (98 loc) · 3.63 KB
/
index.html
File metadata and controls
102 lines (98 loc) · 3.63 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Weather</title>
<link rel="stylesheet" href="styles/forecast.css">
<link href="https://fonts.googleapis.com/css?family=Quicksand|Titillium+Web" rel="stylesheet">
</head>
<body>
<header>
<h1>Modern weather app</h1>
</header>
<nav>
<a href="" class="active">Forecast</a>
<a href="moreInfo.html">More Info</a>
<!-- <a href="data/api.php">API</a> -->
</nav>
<main>
<div class="container">
<div class="now clearfix">
<div class="all-50">
<div class="date">
<p id="today"></p>
</div>
<div id="temp0" class="current-temperature">
</div>
</div>
<div class="all-50">
<div class="weather-icon">
<img id="ic0" alt="wait...">
</div>
</div>
</div>
<div class="forecast">
<div class="hourly-forecast clearfix">
<div id="ho1" class="forecast-date">14:00</div>
<div class="forecast-weather">
<div id="temp1" class="forecast-temperature">25 °</div>
<div class="forecast-icon">
<img id="ic1" alt="wait...">
</div>
</div>
</div>
<div class="hourly-forecast clearfix">
<div id="ho2" class="forecast-date">15:00</div>
<div class="forecast-weather">
<div id="temp2" class="forecast-temperature">26 °</div>
<div class="forecast-icon">
<img id="ic2" alt="wait...">
</div>
</div>
</div>
<div class="hourly-forecast clearfix">
<div id="ho3" class="forecast-date">16:00</div>
<div class="forecast-weather">
<div id="temp3" class="forecast-temperature">26 °</div>
<div class="forecast-icon">
<img id="ic3" alt="wait...">
</div>
</div>
</div>
<div class="hourly-forecast clearfix">
<div id="ho4" class="forecast-date">17:00</div>
<div class="forecast-weather">
<div id="temp4" class="forecast-temperature">25 °</div>
<div class="forecast-icon">
<img id="ic4" alt="wait...">
</div>
</div>
</div>
<div class="hourly-forecast clearfix">
<div id="ho5" class="forecast-date">18:00</div>
<div class="forecast-weather">
<div id="temp5" class="forecast-temperature">24 °</div>
<div class="forecast-icon">
<img id="ic5" alt="wait...">
</div>
</div>
</div>
<div class="hourly-forecast clearfix">
<div id="ho6" class="forecast-date">19:00</div>
<div class="forecast-weather">
<div id="temp6" class="forecast-temperature">23 °</div>
<div class="forecast-icon">
<img id="ic6" alt="wait...">
</div>
</div>
</div>
</div>
</div>
</main>
<script src="scripts/forecast.js">
</script>
</body>
</html>