1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Snake/index.html
2021-03-18 10:29:12 +01:00

28 lines
937 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>KyFlo Snake</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" type="text/css" href="sources/css/style.css">
</head>
<body>
<h1>KyFlo Snake</h1>
<div class="row menu">
<div class="col s6 offset-s3">
<div class="col s10 offset-s1 input-field">
<input type="text" id="nickname">
<label for="nickname">Nickname :</label>
</div>
<button class="col s8 offset-s2">Level 1</button>
<button class="col s8 offset-s2">Level 2</button>
<button class="col s8 offset-s2">Level 3</button>
</div>
</div>
<canvas id="canvas"></canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script type="module" src="sources/js/index.js"></script>
</body>
</html>