-
Notifications
You must be signed in to change notification settings - Fork 0
/
New Text Document.html
23 lines (23 loc) · 997 Bytes
/
New Text Document.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Weather Panel</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.0/css/all.css" />
</head>
<body>
<main id="main">
<div class="search-container">
<input type="text" id="searchInput" placeholder="Cari kota di Jawa Timur..." />
<button id="searchButton">Cari</button>
</div>
</main>
<footer>Data dari BMKG - data.bmkg.go.id</footer>
<script src="index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.0/js/all.js"></script>
</body>
</html>