-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 962 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 962 Bytes
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
<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Snake Játék</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container">
<div class="row">
<div class="col text-center">
<h1 class="mt-5 mb-4">Snake Játék by GPT-4</h1>
<canvas id="game-board" width="600" height="600"></canvas>
<p class="mt-4" id="score">Pontszám: 0</p>
<p class="mt-2" id="high-score">Legmagasabb pontszám: 0</p>
<span id="stopwatch">00:00.000</span>
</div>
</div>
</div>
<script src="snake.js"></script>
</body>
</html>