-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (68 loc) · 2.85 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
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
<!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>Final Project 4</title>
<link href="img/sunny.png" rel="shortcut icon" type="image/x-icon" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css" />
</head>
<body>
<main>
<div class="container-fluid px-1 px-sm-3 py-5 mx-auto box">
<div class="d-flex justify-content-center">
<div class="row card0">
<div class="card1 col-lg-8 col-md-7 d-flex align-items-end">
<div class="row px-3 mt-5 mb-5 ms-lg-3">
<h1 class="large-font" id="suhu">0°С</h1>
<div class="d-flex flex-column">
<h2 id="kota">Kota</h2>
<small id="tanggal"></small>
</div>
</div>
</div>
<div class="card col-lg-4 col-md-5 py-3">
<div class="card-body p-lg-5 py-lg-5">
<div class="d-flex pb-3">
<input type="text" class="form-control form-control-lg me-3 input" id="country" placeholder="City..." />
<button class="btn btn-primary btn-lg" id="btn"><i class="bi bi-search"></i></button>
</div>
<div class="mt-5">
<p class="text-muted">Weather Details</p>
<div class="table-responsive">
<table class="table fw-normal">
<tbody>
<tr>
<td class="py-4">City</td>
<td class="text-end py-4" id="city"></td>
</tr>
<tr>
<td class="py-4">Condition</td>
<td class="text-end py-4" id="condition"></td>
</tr>
<tr>
<td class="py-4">Temperature</td>
<td class="text-end py-4" id="temperature"></td>
</tr>
<tr>
<td class="py-4">Wind Speed</td>
<td class="text-end py-4" id="wind"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>