website/index.html

29 lines
753 B
HTML
Raw Normal View History

2024-04-18 15:00:25 -03:00
<!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>hello</title>
</head>
<body>
<header id="header">
<div>
<h1>Hello!</h1>
</div>
</header>
<main>
<div>
<p>This is my website.</p>
<p>For now, there's nothing on it, but someday will have. Hopefully will not take long for it.</p>
2024-05-01 11:19:25 -03:00
<p>Meanwhile, you can check my <a href="https://forge.unlxam.xyz">Forgejo</a> instance (which also has nothing).</p>
2024-04-18 15:00:25 -03:00
</div>
</main>
<footer id="footer">
<div>
:)
</div>
</footer>
</body>
</html>