Skip to content

Instantly share code, notes, and snippets.

@aacassandra
Created May 12, 2020 23:23
Show Gist options
  • Save aacassandra/90868551fd91f83bd25a990d0f1a5984 to your computer and use it in GitHub Desktop.
Save aacassandra/90868551fd91f83bd25a990d0f1a5984 to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat Table
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<h3>Contoh membuat tabel (basic)</h3>
<table border="1" cellpadding="10">
<tr>
<th>No</th>
<th>Name</th>
<th>Address</th>
<th>Email</th>
</tr>
<tr>
<td>1</td>
<td>Joni</td>
<td>Jl. Example 1</td>
<td>[email protected]</td>
</tr>
<tr>
<td>2</td>
<td>Jordan</td>
<td>Jl. Example 2</td>
<td>[email protected]</td>
</tr>
</table>
<h3>Contoh membuat tabel dengan element</h3>
<table border="1" cellpadding="10">
<thead>
<tr>
<th>No</th>
<th>Name</th>
<th>Address</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Joni</td>
<td>Jl. Example 1</td>
<td>[email protected]</td>
</tr>
<tr>
<td>2</td>
<td>Jordan</td>
<td>Jl. Example 2</td>
<td>[email protected]</td>
</tr>
</tbody>
<tr>
<td>No</td>
<td>Name</td>
<td>Address</td>
<td>Email</td>
</tr>
<tfoot>
</tfoot>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment