-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
29 lines (28 loc) · 899 Bytes
/
table.html
File metadata and controls
29 lines (28 loc) · 899 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Pengenalan Bootstrap</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h2>Tabel Pelanggan</h2>
<table class="table table-bordered table-striped table-hover">
<tr>
<th>No.</th><th>Nama</th><th>Alamat</th>
</tr>
<tr>
<td>1.</td><td>Alifa</td><td>Malang</td>
</tr>
<tr>
<td>2.</td><td>Bima</td><td>Surabaya</td>
</tr>
<tr>
<td>3.</td><td>Cindy</td><td>Sidoarjo</td>
</tr>
</table>
</div>
</body>
</html>