pages/blog.html
2025-08-18 22:15:05 +03:00

36 lines
804 B
HTML

<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="author" content="Aleksei Savin" />
<meta name="description" content="Blog page." />
<meta name="viewport" content="width=device-width" />
<title>Blog</title>
</head>
<body>
<main>
<h1>Blog</h1>
<nav>
<table>
<tr>
<th>Date</th>
<th>Link</th>
</tr>
<tr>
<td>2025-07-27</td>
<td>
<a href="blog/minecraft-server.html"
>Minecraft Server Installation</a
>
</td>
</tr>
<tr>
<td>2025-07-24</td>
<td>I create this website!</td>
</tr>
</table>
</nav>
</main>
</body>
</html>