Skip to content

Instantly share code, notes, and snippets.

@kriskornel
Created January 17, 2021 08:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kriskornel/9f7c966572ac37fc8c1ac52c51a3ed44 to your computer and use it in GitHub Desktop.
Save kriskornel/9f7c966572ac37fc8c1ac52c51a3ed44 to your computer and use it in GitHub Desktop.
Tugas pembuatan table invoice dan colspan
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Number of days in month of 2021</title>
</head>
<body>
<center>
<h1>Number of days in month of 2021</h1>
<table border="1" width="350px">
<tr bgcolor="gray" align="right">
<th>January</th>
<td>31 days</td>
</tr>
<tr align="right" align="right">
<th>February</th>
<td>28 days</td>
</tr>
<tr bgcolor="pink" align="right">
<th>March</th>
<td>30 days</td>
</tr>
<tr align="right">
<th>April</th>
<td>31 days</td>
</tr>
<tr align="right">
<th>May</th>
<td>31 days</td>
</tr>
<tr align="right">
<th>June</th>
<td>31 days</td>
</tr>
<tr>
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<td colspan="2">&copy; 2021</td>
</tr>
</table>
</center>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment