28 lines
446 B
HTML
28 lines
446 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>
|
||
|
<th>Attribute</th>
|
||
|
<th>Function</th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td><i>colspan</i></td>
|
||
|
<td>To merge columns</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td><i>rowspan</i></td>
|
||
|
<td>To merge rows</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|