49 lines
1.4 KiB
HTML
49 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!--
|
|
Hello fellow nerd!
|
|
-->
|
|
|
|
<head>
|
|
<title></title>
|
|
<link rel="stylesheet" href="/styles.css">
|
|
<script src="/main.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<header><div>
|
|
<button id="button-home" onclick="switchTab(this);"><img src="/icons/house.svg"> Home</button>
|
|
<button id="button-pics" onclick="switchTab(this);"><img src="/icons/image.svg"> Pictures</button>
|
|
<button id="button-projects" onclick="switchTab(this);"><img src="/icons/spanner.svg"> Cool things I've done</button>
|
|
</div></header>
|
|
|
|
<main>
|
|
<article id="tab-home" default>
|
|
<h1 id="helloText"><noscript>Hewwo!</noscript></h1>
|
|
<h2><span id="imaText"><noscript>I'm a <span class="textHighlight">dumbass</span></noscript></span>.</h2>
|
|
</article>
|
|
|
|
<article id="tab-pics">
|
|
|
|
</article>
|
|
|
|
<article id="tab-projects">
|
|
|
|
</article>
|
|
</main>
|
|
|
|
<footer>
|
|
<!-- Left side -->
|
|
<div>
|
|
<p>Icons from <a href="https://lucide.dev/">Lucide</a>.</p>
|
|
</div>
|
|
<!-- Right side -->
|
|
<div>
|
|
<div style="height: 50px;" class="imgRightText">
|
|
<img src="/pfp.png">
|
|
<p>Brosef</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html> |