29 lines
752 B
HTML
29 lines
752 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>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>
|
||
|
<p>Meanwhile, you can check my <a href="http://forge.unlxam.xyz">Forgejo</a> instance (which also has nothing).</p>
|
||
|
</div>
|
||
|
</main>
|
||
|
<footer id="footer">
|
||
|
<div>
|
||
|
:)
|
||
|
</div>
|
||
|
</footer>
|
||
|
</body>
|
||
|
</html>
|