80 lines
1.5 KiB
HTML
80 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<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>
|