36 lines
793 B
HTML
36 lines
793 B
HTML
<!doctype html>
|
|
<html lang=en>
|
|
|
|
<meta name=viewport content='width=device-width, initial-scale=0.5'>
|
|
|
|
<title>rainbow quox</title>
|
|
|
|
<link rel=stylesheet href=style.css>
|
|
<script src=canvas.js type=module></script>
|
|
|
|
<div id=buttons>
|
|
<button id=reroll>new quox</button>
|
|
<button id=swap>swap view</button>
|
|
</div>
|
|
|
|
<div id=pic-holder>
|
|
<canvas id=pic width=1000 height=673>
|
|
if the canvas isn't working,
|
|
the old version is <a href=old.html>here</a>
|
|
</canvas>
|
|
<canvas id=pic2 width=1000 height=673>
|
|
</canvas>
|
|
</div>
|
|
|
|
<div id=palette-holder>
|
|
<object type='image/svg+xml' data=palette.svg id=palette
|
|
width=1152 height=179>
|
|
there should be a palette here but it failed to load for some reason
|
|
</object>
|
|
</div>
|
|
|
|
<nav id=back>
|
|
<a href=/>
|
|
<img src=back.svg>
|
|
</a>
|
|
</nav>
|