-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.46 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.46 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>weather ascii</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div id="hud" class="hud">
<div class="hud-main">
<div class="hud-info">
<span id="location"></span> (<span id="lat">0.0</span>, <span id="lon">0.0</span>) |
<span id="time">--:--:--</span> |
Погода: <span id="description">--</span> |
Темп: <span id="temp">--°C</span> |
Ощ.: <span id="feels">--°C</span> |
Ветер: <span id="wind">-</span> <span id="windDir">-</span> м/с |
Осадки: <span id="precip">--</span> мм |
Давл.: <span id="pressure">---</span> мм рт.ст. |
Влажн.: <span id="humidity">--</span>%
</div>
<div class="hud-regen">
<span id="regenBtn" title="Обновить ландшафт">↺</span>
</div>
</div>
<div id="testModeIndicator" class="test-mode hidden">⚡ ТЕСТОВЫЙ РЕЖИМ ⚡ <span id="testTime"></span></div>
</div>
<pre id="asciiCanvas" class="ascii-canvas"></pre>
</div>
<script src="script.js"></script>
</body>
</html>