Skip to content

Instantly share code, notes, and snippets.

@ridhof
Created October 12, 2018 11:58
Show Gist options
  • Save ridhof/a242d36bc1c671d7161470224b4307ab to your computer and use it in GitHub Desktop.
Save ridhof/a242d36bc1c671d7161470224b4307ab to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
table {
margin-top: 10px;
margin-bottom: 10px;
}
table, th, td {
border: 1px solid black;
padding: 5px;
}
label {
margin: 5px;
}
</style>
</head>
<body>
<label>Search: <input type="text" name=""></label>
<table>
<tr>
<th>
<input type="checkbox" name="all">
Centang Semua
</th>
<th>Nama</th>
<th>Jurusan</th>
</tr>
<tr>
<td>
<input type="checkbox" name="centang[]">
</td>
<td>
Dede Pranata
</td>
<td>
Teknik Informatika
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="centang[]">
</td>
<td>
Dede Sanjaya
</td>
<td>
Teknik Informatika
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="centang[]">
</td>
<td>
Yansen
</td>
<td>
Teknik Gatau
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="centang[]">
</td>
<td>
Bondar
</td>
<td>
Manejemen
</td>
</tr>
</table>
<a href="">1</a>
<a href="">2</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment