0% found this document useful (0 votes)
96 views4 pages

Kids' Multiplication Table

This document contains a multiplication table displaying the results of multiplying numbers 1 through 5. It includes a title and headings labeling the factors and products, and uses styling to border and center align the table cells.

Uploaded by

HanzTzy Gaming
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
96 views4 pages

Kids' Multiplication Table

This document contains a multiplication table displaying the results of multiplying numbers 1 through 5. It includes a title and headings labeling the factors and products, and uses styling to border and center align the table cells.

Uploaded by

HanzTzy Gaming
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html>
<head>
<title>Multiplication Table</title>
<style>
table, th, td {
border: 1px solid black;
text-align: center;
}
</style>S
</head>
<body>
<h2>Multiplication Table</h2>
<table>
<tr>
<th>&times;</th>
<th>1</th>
<th>2</th>
<th>3</th>
<th>4</th>
<th>5</th>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>2</td>
<td>2</td>
<td>4</td>
<td>6</td>
<td>8</td>
<td>10</td>
</tr>
<tr>
<td>3</td>
<td>3</td>
<td>6</td>
<td>9</td>
<td>12</td>
<td>15</td>
</tr>
<tr>
<td>4</td>
<td>4</td>
<td>8</td>
<td>12</td>
<td>16</td>
<td>20</td>S
</tr>
<tr>
<td>5</td>
<td>5</td>
<td>10</td>
<td>15</td>
<td>20</td>
<td>25</td>
</tr>
</table>
</body>
</html>

You might also like