-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
34 lines (34 loc) · 993 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Check Khodam</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="container">
<h1>Check Khodam</h1>
<input type="text" id="nameInput" placeholder="Masukin namanya gro..">
<button id="checkButton">Cek Khodam</button>
<p id="result"></p>
</div>
<div class="container-check">
<h2>Sudah Dicek</h2>
<div class="table-container">
<table>
<thead>
<tr>
<th>Nama</th>
<th>Khodam</th>
</tr>
</thead>
<tbody id="checkTableBody">
</tbody>
</table>
</div>
<button id="clearButton">Hapus Table</button>
</div>
<script src="js/script.js"></script>
</body>
</html>