-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (60 loc) · 2.1 KB
/
index.html
File metadata and controls
64 lines (60 loc) · 2.1 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
<!doctype html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Musat Hava Durumu Hizmetleri</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="https://unpkg.com/feather-icons/dist/feather.css" />
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body>
<div class="container">
<div class="weather-card">
<div class="weather-side">
<div class="weather-gradient"></div>
<div class="date-container">
<h2 class="date-dayname">...</h2>
<span class="date-day">...</span>
<span class="location">
<i data-feather="map-pin"></i> Konum Bulunuyor...
</span>
</div>
<div class="weather-container">
<i data-feather="loader" class="weather-icon"></i>
<h1 class="weather-temp">--°C</h1>
<h3 class="weather-desc">...</h3>
</div>
</div>
<div class="info-side">
<div class="today-info-container">
<div class="today-info">
<div class="precipitation">
<span class="title">YAĞIŞ İHTİMALİ</span>
<span class="value" id="precip-val">-- %</span>
</div>
<div class="humidity">
<span class="title">NEM ORANI</span>
<span class="value" id="humidity-val">-- %</span>
</div>
<div class="wind">
<span class="title">RÜZGAR</span>
<span class="value" id="wind-val">-- km/s</span>
</div>
</div>
</div>
<div class="week-container">
<ul class="week-list"></ul>
</div>
<div class="location-container">
<button class="location-button">
<i data-feather="map-pin"></i>
<span>Konum Değiştir</span>
</button>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>