Skip to content

Instantly share code, notes, and snippets.

@josikie
Last active April 20, 2020 01:40
Show Gist options
  • Save josikie/22747c19c08d9a222bd381018c42337b to your computer and use it in GitHub Desktop.
Save josikie/22747c19c08d9a222bd381018c42337b to your computer and use it in GitHub Desktop.
Membuat Tabel Menggunakan HTML dan CSS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tabel HTML</title>
</head>
<body>
<table>
<tr>
<th>Nama </th>
<th>Kelas </th>
<th>Jurusan </th>
<th>No. Absen </th>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment