-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (73 loc) · 3.94 KB
/
index.html
File metadata and controls
78 lines (73 loc) · 3.94 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
<!-- CREDIT -->
<!-- Dibuat 80% Oleh Lemon, termasuk style, foto, logo, fitur typing, cari dan pemasangan api. 20% GPT untuk repair error-->
<!-- KALO MAU COPY KODENYA, JANGAN LUPA FOLLOW LAHHH AKUN GITHUB GW, ATAU *MINIMAL* KASIH BINTANG, Capek Aku Wak... -->
<!-- [ LemonSync ] -->
<!-- Tuh Akun GitHub Gw, atau https://github.com/LemonSync -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Weather App</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="weather.jpg" type="image/jpeg">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="script.js" defer></script>
</head>
<body>
<h1>Weather Dashboard</h1>
<div class="container">
<div class="weather-input">
<h3>Masukkan Nama Kota Anda.</h3>
<input class="city-input" type="text" placeholder="Medan, Jakarta, Palembang ....">
<button class="search-btn">Search</button>
<div class="separator"></div>
<button class="location-btn">Gunakan Lokasi Langsung.</button>
</div>
<div class="weather-data">
<div class="current-weather">
<div class="details">
<h2>_______ ( ㅤㅤㅤㅤㅤ )</h2>
<h6>Temperature: ㅤㅤㅤ°C</h6>
<h6>Angin:ㅤㅤM/S</h6>
<h6>Kelembapan: ㅤ%</h6>
</div>
</div>
<div class="days-forecast">
<h2>Prakiraan 5-Hari</h2>
<ul class="weather-cards">
<li class="card">
<h3>( ㅤㅤㅤㅤㅤ )</h3>
<h6>Temp: ㅤㅤ°C</h6>
<h6>Angin: ㅤㅤM/S</h6>
<h6>Kelembapan: ㅤ%</h6>
</li>
<li class="card">
<h3>( ㅤㅤㅤㅤㅤ )</h3>
<h6>Temp: ㅤㅤ°C</h6>
<h6>Angin: ㅤㅤM/S</h6>
<h6>Kelembapan: ㅤ%</h6>
</li>
<li class="card">
<h3>( ㅤㅤㅤㅤㅤ )</h3>
<h6>Temp: ㅤㅤ°C</h6>
<h6>Angin: ㅤㅤM/S</h6>
<h6>Kelembapan: ㅤ%</h6>
</li>
<li class="card">
<h3>( ㅤㅤㅤㅤㅤ )</h3>
<h6>Temp: ㅤㅤ°C</h6>
<h6>Angin: ㅤㅤM/S</h6>
<h6>Kelembapan: ㅤ%</h6>
</li>
<li class="card">
<h3>( ㅤㅤㅤㅤㅤ )</h3>
<h6>Temp: ㅤㅤ°C</h6>
<h6>Angin: ㅤㅤM/S</h6>
<h6>Kelembapan: ㅤ%</h6>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>