-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<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>Weather App</title>
<link rel="icon" href="galeri/icon.png" type="image/x-icon" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
</head>
<body>
<div class="semua">
<div class="atas">
<input type="text" placeholder="enter your location" class="input" />
</div>
<div class="tengah">
<h1 class="derajat">33°C</h1>
<h2 class="keterangan">Hot</h2>
<h3 class="alamat">Makassar, ID</h3>
<h4 class="waktu">Sunday, 07 Mei 2022</h4>
</div>
<div class="eror">
<h3>Sorry, your location is wrong!!!!</h3>
<img src="galeri/salah.png" class="salah-gambar" />
</div>
</div>
<script src="script.js"></script>
</body>
</html>