34 lines
1020 B
HTML
34 lines
1020 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>My first website!</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script type="module" src="script.js"></script>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Hello, world!</h1>
|
|
<p>This is my first website! I hope you like it ;)</p>
|
|
<ul>
|
|
<p>Here are my socials:</p>
|
|
<li><a href="https://tumblr.com/guz013">Tumblr</a></li>
|
|
<li><a href="https://instagram.com/guz013_">Instagram</a></li>
|
|
<li><a href="https://bsky.app/profile/guz.one">BlueSky</a></li>
|
|
</ul>
|
|
<p>You can find my projects <a href="https://forge.capytal.company/guz013">here!</a></p>
|
|
</main>
|
|
<div id="background"></div>
|
|
<div
|
|
id="player"
|
|
style="width:5rem; height:5rem; position:absolute; left:45%; bottom:20%; z-index:3;"
|
|
>
|
|
<img
|
|
src="https://opengameart.org/sites/default/files/Stalkette%20%281%29.gif"
|
|
style="width:100%; height:100%;"
|
|
/>
|
|
</div>
|
|
</body>
|
|
</html>
|