Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions HTML Tables/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="HTML Tables quiz">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Tables</title>
<style>
table,
th,
td {
font-size: 2rem;
border: 1px solid black;
}
td{
padding: .5em;
}
</style>
</head>
<body>
<table>
<tr>
<td colspan="3">HEADING</td>
<td>A4</td>
<td>A5</td>
</tr>
<tr>
<td rowspan="3">BCD1</td>
<td>B2</td>
<td>B3</td>
<td>B4</td>
<td>B5</td>
</tr>
<tr>
<td>C2</td>
<td colspan="2">C3,4</td>
<td rowspan="2">CD5</td>
</tr>
<tr>
<td>D2</td>
<td>D3</td>
<td>D4</td>
</tr>
<tr>
<td>E1</td>
<td colspan="4">E2~5</td>
</tr>
</table>
</body>
</html>