-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (21 loc) · 863 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<title>The Snake Game</title>
<link rel="stylesheet" href="style.css">
<link rel = "icon" href = "favicon.png">
<link href="https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,800;1,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Caveat&display=swap" rel="stylesheet">
</head>
<body >
<div style="text-align:center">
<header >
<h1 class="heading"> <u>  Hungry Snake</u> </h1>
</header>
<p class="head2"> Click anywhere to begin or to start again </p>
<canvas id = "mycanvas" width = 1100px height= 800px> </canvas>
</div>
<script src = "snake2.js"></script>
</body>
</html>