a-star/index.html

36 lines
579 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<title>A*</title>
<meta charset="UTF-8">
<style>
html {
height: 100%;
}
body {
background-color: black;
min-height: 100%;
padding: 0;
margin: 0;
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
}
#color-picker {
width: 100%;
}
</style>
<script defer src="a-star.js"></script>
</head>
<body>
<div id="app">
<canvas id="canvas"></canvas>
<div id="bar"><input id="color-picker" type="color"></div>
</div>
</body>
</html>