Add web design files

This commit is contained in:
2025-11-20 21:37:53 +02:00
parent 258f24570a
commit 9192716bfb
510 changed files with 12551 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<html>
<head>
<title>Объдинение столбцов и строчек</title>
</head>
<body>
<table height="300" width="600" cellspacing="0" cellpadding="0" border="1">
<tr height=100>
<td colspan="2" rowspan="2">1</td>
<td>2</td>
<td rowspan="3">3</td>
</tr>
<tr height="100">
<td rowspan="2">4</td>
</tr>
<tr height="100">
<td>5</td>
<td>6</td>
</tr>
</table>
</body>
</html>