-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
205 lines (198 loc) · 13.1 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!DOCTYPE html>
<html lang="ru">
<!--
▄▄▄ ▒███████▒ ██▓▒███████▒ ▄▄▄▄ ▓█████ ██ ▄█▀▄▄▄█████▓▓█████ ███▄ ▄███▓ ██▓ ██▀███ ▒█████ ██▒ █▓
▒████▄ ▒ ▒ ▒ ▄▀░▓██▒▒ ▒ ▒ ▄▀░ ▓█████▄ ▓█ ▀ ██▄█▒ ▓ ██▒ ▓▒▓█ ▀ ▓██▒▀█▀ ██▒▓██▒▓██ ▒ ██▒▒██▒ ██▒▓██░ █▒
▒██ ▀█▄ ░ ▒ ▄▀▒░ ▒██▒░ ▒ ▄▀▒░ ▒██▒ ▄██▒███ ▓███▄░ ▒ ▓██░ ▒░▒███ ▓██ ▓██░▒██▒▓██ ░▄█ ▒▒██░ ██▒ ▓██ █▒░
░██▄▄▄▄██ ▄▀▒ ░░██░ ▄▀▒ ░ ▒██░█▀ ▒▓█ ▄ ▓██ █▄ ░ ▓██▓ ░ ▒▓█ ▄ ▒██ ▒██ ░██░▒██▀▀█▄ ▒██ ██░ ▒██ █░░
▓█ ▓██▒▒███████▒░██░▒███████▒ ░▓█ ▀█▓░▒████▒▒██▒ █▄ ▒██▒ ░ ░▒████▒▒██▒ ░██▒░██░░██▓ ▒██▒░ ████▓▒░ ▒▀█░
▒▒ ▓▒█░░▒▒ ▓░▒░▒░▓ ░▒▒ ▓░▒░▒ ░▒▓███▀▒░░ ▒░ ░▒ ▒▒ ▓▒ ▒ ░░ ░░ ▒░ ░░ ▒░ ░ ░░▓ ░ ▒▓ ░▒▓░░ ▒░▒░▒░ ░ ▐░
▒ ▒▒ ░░░▒ ▒ ░ ▒ ▒ ░░░▒ ▒ ░ ▒ ▒░▒ ░ ░ ░ ░░ ░▒ ▒░ ░ ░ ░ ░░ ░ ░ ▒ ░ ░▒ ░ ▒░ ░ ▒ ▒░ ░ ░░
░ ▒ ░ ░ ░ ░ ░ ▒ ░░ ░ ░ ░ ░ ░ ░ ░ ░ ░░ ░ ░ ░ ░ ░ ▒ ░ ░░ ░ ░ ░ ░ ▒ ░░
░ ░ ░ ░ ░ ░ ░ ░ ░ ░░ ░ ░ ░ ░ ░ ░ ░ ░ ░
░ ░ ░ ░
-->
<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>Latmedia Weather</title>
<link rel="shortcut icon" href="./img/sun.png" type="image/x-icon">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap" rel="stylesheet">
<!-- Libs -->
<link rel="stylesheet" href="libs/bootstrap5/bootstrap-grid.min.css">
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<!-- Custom styles -->
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="./styles/media.css">
<!-- Script files -->
<script defer src="./js/back.js"></script>
<script defer src="./js/front.js"></script>
</head>
<body class="body__back">
<header>
<nav>
<div class="container nav__container">
<a href="#!" class="nav__time color_picker"></a>
<a class="nav__logo color_picker" href="#!">LatMetio App</a>
<a class="nav__set box_picker" href="#!">
<span class="nav__span color_span nav__span1"></span>
<span class="nav__span color_span nav__span2"></span>
<span class="nav__span color_span nav__span3"></span>
</a>
</div>
</nav>
</header>
<main>
<section class="weather">
<div class="container weather__container">
<div id="currentWeather" class="weather-content box_picker">
<h5 class="weather-content__uptitle color_picker">Загрузка...</h5>
<h2 open-weather-code="Tashkent" hydromet-code="tashkent" id="currentCity"
class="weather-content__title color_picker">Ташкент</h2>
<p class="weather-content__iconholder">
<i class="weather-content__icon"></i>
</p>
<p class="weather-content__temp color_picker" style="margin-left: 6%;"></p>
<div class="weather-info">
<p class="weather-info__line weather-info__type color_picker">Загрузка...</p>
<p class="weather-info__line weather-info__feel color_picker">...</p>
</div>
</div>
<div class="weather-forecast">
<div class="weather-forecast_today">
<h4 class="weather-forecast__title color_picker">Прогноз на сегодня:</h4>
<div class="weather-card box_picker">
<div class="weather-card-left">
<p class="weather-card-left__date weather-card-left__date_today color_picker">
Загрузка...</p>
<p class="weather-card-left__weather weather-card-left__weather_today color_picker">
...
</p>
</div>
<div class="weather-card-right">
<i class="weather-card-right__icon weather-card-right__icon_today"></i>
<div class="weather-card-right__tempDiv">
<p
class="weather-card-right__tempDay weather-card-right__tempDay_today color_picker">
...
</p>
<p
class="weather-card-right__tempNight weather-card-right__tempNight_today color_picker">
...
</p>
</div>
</div>
</div>
</div>
<div class="weather-forecast_forecaster">
<h4 class="weather-forecast__title weather-forecast__title_3day color_picker">Прогноз на 3 дня:
</h4>
<!-- Завтра -->
<div class="weather-card box_picker">
<div class="weather-card-left">
<p class="weather-card-left__date weather-card-left__date_tomorrow color_picker">
Загрузка</p>
<p class="weather-card-left__weather weather-card-left__weather_tomorrow color_picker">
...
</p>
</div>
<div class="weather-card-right">
<i class="weather-card-right__icon weather-card-right__icon_tomorrow"></i>
<div class="weather-card-right__tempDiv">
<p
class="weather-card-right__tempDay weather-card-right__tempDay_tomorrow color_picker">
...</p>
<p
class="weather-card-right__tempNight weather-card-right__tempNight_tomorrow color_picker">
...</p>
</div>
</div>
</div>
<!-- Послезавтра -->
<div class="weather-card weather-card2 box_picker">
<div class="weather-card-left">
<p class="weather-card-left__date weather-card-left__date_aftertomorrow color_picker">
Загрузка
</p>
<p
class="weather-card-left__weather weather-card-left__weather_aftertomorrow color_picker">
...
</p>
</div>
<div class="weather-card-right">
<i class="weather-card-right__icon weather-card-right__icon_aftertomorrow"></i>
<div class="weather-card-right__tempDiv">
<p
class="weather-card-right__tempDay weather-card-right__tempDay_aftertomorrow color_picker">
...
</p>
<p
class="weather-card-right__tempNight weather-card-right__tempNight_aftertomorrow color_picker">
...
</p>
</div>
</div>
</div>
<!-- day3 -->
<div class="weather-card weather-card3 box_picker">
<div class="weather-card-left">
<p class="weather-card-left__date weather-card-left__date_day3 color_picker">
Загрузка
</p>
<p class="weather-card-left__weather weather-card-left__weather_day3 color_picker">
...
</p>
</div>
<div class="weather-card-right">
<i class="weather-card-right__icon weather-card-right__icon_day3"></i>
<div class="weather-card-right__tempDiv">
<p
class="weather-card-right__tempDay weather-card-right__tempDay_day3 color_picker">
...
</p>
<p
class="weather-card-right__tempNight weather-card-right__tempNight_day3 color_picker">
...
</p>
</div>
</div>
</div>
</div>
</div>
<div class="banner box_picker"></div>
</div>
</section>
</main>
<div class="menu box_picker">
<ul class="menu__list">
<a class="menu__close" href="#!">
<i class="ri-close-fill color_picker"></i>
</a>
<li class="menu__item link1"><a href="#!" class="menu__link color_picker">Ташкент</a></li>
<li class="menu__item"><a href="./city/andijan.html" class="menu__link color_picker">Андижан</a></li>
<li class="menu__item"><a href="./city/bukhara.html" class="menu__link color_picker">Бухара</a></li>
<li class="menu__item"><a href="./city/gulistan.html" class="menu__link color_picker">Гулистан</a></li>
<li class="menu__item"><a href="./city/jizzakh.html" class="menu__link color_picker">Джизак</a></li>
<li class="menu__item"><a href="./city/karshi.html" class="menu__link color_picker">Карши</a></li>
<li class="menu__item"><a href="./city/navoi.html" class="menu__link color_picker">Навои</a></li>
<li class="menu__item"><a href="./city/namangan.html" class="menu__link color_picker">Наманган</a></li>
<li class="menu__item"><a href="./city/nukus.html" class="menu__link color_picker">Нукус</a></li>
<li class="menu__item"><a href="./city/samarkand.html" class="menu__link color_picker">Самарканд</a></li>
<li class="menu__item"><a href="./city/termez.html" class="menu__link color_picker">Термез</a></li>
<li class="menu__item"><a href="./city/urgench.html" class="menu__link color_picker">Ургенч</a></li>
<li class="menu__item"><a href="./city/ferghana.html" class="menu__link color_picker">Фергана</a></li>
</ul>
<div class="menu__add">
<a class="menu__add-link menu__add-widget color_picker" href="#!">
<i class="ri-code-s-slash-fill color_picker"></i>
Получить виджет</a>
<a class="menu__add-link menu__link-docs color_picker" href="#!">
<i class="ri-tools-fill color_picker"></i>
Документация</a>
</div>
</div>
</body>
</html>