You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
389 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Html5</title>
<meta charset="UTF-8">
<style type="text/css">
table {width: 250px;border: 1px solid black;
border-collapse: collapse;}
td {border: 1px solid black;}
</style>
</head>
<body>
<table>
<tr>
<td colspan="3" style="text-align: center;">Table Title</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
</table>
</body>
</html>