-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (97 loc) · 4.53 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en" rel="preload">
<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">
<link rel="stylesheet" href="./styles/styles.css">
<link rel="icon" type="image/png" href="./images/favicon.png" />
<script src="./dist/script.js" defer></script>
<title>Forecast to Ride</title>
</head>
<body class="app">
<div class="app__wrapper">
<header class="app__header">
<div class="app__logo">
<a href="#" class="app__logo-link">
<img src="./images/logo.png" alt="logo image" class="app__logo-img" />
</a>
</div>
<div class="app__search">
<input class="app__search-input" autocomplete="on" id="location" placeholder="City, County" type="text"
oninput="validateEnglishInput(this)" />
<button id="locate" class="app__form-buton" type="submit"></button>
</div>
<div class="app__clock">
<span id="clock" class="app__clock-time"></span>
</div>
</header>
<main class="app__content">
<div class="app__weather">
<div class="app__weather__current">
<div class="app__weather__details">
<div class="app__weather__details-head">
<span class="app__weather__details-head__title"></span>
<span class="app__weather__details-head__date"></span>
</div>
<ul class="app__weather__details-properties">
<li class="app__weather__details-properties__item">
<span class="app__weather__details-properties__label">Temperature: </span>
<span
class="app__weather__details-properties__value app__weather__details-properties__value--temp"></span>
</li>
<li class="app__weather__details-properties__item">
<span class="app__weather__details-properties__label">Feelslike: </span>
<span
class="app__weather__details-properties__value app__weather__details-properties__value--feelslike"></span>
</li>
<li class="app__weather__details-properties__item">
<span class="app__weather__current-day__item-propertie">Maximum: </span>
<span
class="app__weather__details-properties__value app__weather__details-properties__value--tempmax"></span>
</li>
<li class="app__weather__details-properties__item">
<span class="app__weather__details-properties__label">Minimum: </span>
<span
class="app__weather__details-properties__value app__weather__details-properties__value--tempmin"></span>
</li>
<li class="app__weather__details-properties__item">
<span class="app__weather__details-properties__label">Humidity: </span>
<span
class="app__weather__details-properties__value app__weather__details-properties__value--humidity"></span>
</li>
<li class="app__weather__details-properties__item">
<span class="app__weather__details-properties__label">Pressure: </span>
<span
class="app__weather__details-properties__value app__weather__details-properties__value--pressure"></span>
</li>
<li class="app__weather__details-properties__item">
<span class="app__weather__details-properties__label">Sunrise at: </span>
<span
class="app__weather__details-properties__value app__weather__details-properties__value--sunrise"></span>
</li>
<li class="app__weather__details-properties__item">
<span class="app__weather__details-properties__label">Sunset at: </span>
<span
class="app__weather__details-properties__value app__weather__details-properties__value--sunset"></span>
</li>
</ul>
</div>
<div class="app__weather__widget">
<div class="app__weather__widget__status">
<span class="app__weather__widget__location"></span>
<img src="" class="app__weather__widget__icon">
</div>
<p class="app__weather__widget__conditions">
</p>
</div>
</div>
<div class="app__weather__week">
<div class="app__weather__week-days">
</div>
</div>
</div>
</main>
</div>
</body>
</html>