32 lines
794 B
HTML
32 lines
794 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" type="text/css" href="css/style.css">
|
|
<title>Another page - unlxam</title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<nav>
|
|
<div class="box">
|
|
<div class="links">
|
|
<a href="index.html">Home</a>
|
|
|
|
|
<a href="another_page.html">Another page</a>
|
|
|
|
|
<a href="https://forge.unlxam.xyz">Forgejo</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<main>
|
|
<div class="box">
|
|
<div>
|
|
<p>Just another page so the nav don't feel so empty</p>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|