61 lines
1.7 KiB
HTML
61 lines
1.7 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<script
|
|
defer
|
|
src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"
|
|
></script>
|
|
<script type="module">
|
|
import {renderToCanvas} from './js/mobile-automata.mjs'
|
|
const canvas = document.getElementById('automataCanvas');
|
|
renderToCanvas(canvas, canvas.width, canvas.height);
|
|
</script>
|
|
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>AF</title>
|
|
<link rel="icon" type="img/x-icon" href="img/favicon.ico" />
|
|
<link rel="stylesheet" href="css/styles.css" />
|
|
</head>
|
|
<body>
|
|
<canvas
|
|
id="automataCanvas"
|
|
style="
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: block;
|
|
z-index: -1;
|
|
"
|
|
></canvas>
|
|
|
|
<div class="container">
|
|
<h1> Welcome </h1>
|
|
|
|
<h2> whoami?</h2>
|
|
<p>Hi im Adam</p>
|
|
|
|
<h2> cv </h2>
|
|
<a href="./cv/index.html">CV</a>
|
|
|
|
<!--<h2> </h2>
|
|
<p>
|
|
Sometimes there's this fire that sends shivers down my back.
|
|
It'll come when I'm lis
|
|
</p>
|
|
-->
|
|
|
|
<h2>Shrines</h1>
|
|
<a href="shrines/evangelion.html">Evangelion</a>
|
|
<a href="shrines/skipskipbenben.html">Skip skip ben ben</a>
|
|
<a href="shrines/demoman.html">demoman</a>
|
|
<!--<a href="shrines/gto.html">GTO</a>-->
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|