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

27 lines
846 B
HTML
Raw Normal View History

2021-03-11 09:39:52 +01:00
<!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>
2021-03-23 08:21:05 +01:00
<h1 class="linear-wipe">KyFlo Snake</h1>
<div class="row" id="menu">
2021-03-18 10:29:12 +01:00
<div class="col s6 offset-s3">
2021-03-23 08:21:05 +01:00
<div class="col s10 offset-s1" style="padding: 0">
<input type="text" id="nickname" placeholder="Choose a nickname :">
2021-03-18 10:29:12 +01:00
</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>
2021-03-23 08:21:05 +01:00
2021-03-18 10:29:12 +01:00
</div>
</div>
2021-03-23 08:21:05 +01:00
<canvas></canvas>
2021-03-11 09:39:52 +01:00
<script type="module" src="sources/js/index.js"></script>
</body>
2021-03-23 08:21:05 +01:00
</html>