add pereodic func

This commit is contained in:
2024-05-31 22:12:59 +03:00
parent 85d6145df2
commit c4def899c7
6 changed files with 180 additions and 2 deletions

View File

@@ -4,7 +4,76 @@
<meta charset="UTF-8">
<title>Метостанция </title>
</head>
<body>
<table>
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
<tr>
<td>Row 1, Col 1</td>
<td>Row 1, Col 2</td>
</tr>
<tr>
<td>Row 2, Col 1</td>
<td>Row 2, Col 2</td>
</tr>
<tr>
<td>Row 3, Col 1</td>
<td>Row 3, Col 2</td>
</tr>
</table>
<br>
<table>
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
<tr>
<td>Row 1, Col 1</td>
<td>Row 1, Col 2</td>
</tr>
<tr>
<td>Row 2, Col 1</td>
<td>Row 2, Col 2</td>
</tr>
<tr>
<td>Row 3, Col 1</td>
<td>Row 3, Col 2</td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Two Tables</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
table {
margin: 0 auto;
border-collapse: collapse;
background-color: #fff;
}
th, td {
border: 1px solid #ccc;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
</body>
</html>
</html>