174k views
3 votes
Can anyone please help me with this

Can anyone please help me with this-example-1
User RBI
by
6.5k points

1 Answer

3 votes

Answer:

This should do it. I assume the alignment of the numbers is not important?

<!DOCTYPE html>

<html>

<head>

<style>

table {

border-collapse: collapse;

font: 15px Verdana;

font-weight: bold;

}

table, td {

border: 1px solid black;

}

td {

width: 80px;

height: 80px;

text-align: center;

}

</style>

</head>

<body>

<table>

<tr>

<td>1</td>

<td>2</td>

<td>3</td>

<td>4</td>

</tr>

<tr>

<td colspan="2">5</td>

<td>6</td>

<td rowspan="2">7</td>

</tr>

<tr>

<td>8</td>

<td>9</td>

<td>10</td>

</tr>

</table>

</body>

</html>

User Huong
by
7.0k points