-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdifficulty.html
More file actions
20 lines (20 loc) · 799 Bytes
/
Copy pathdifficulty.html
File metadata and controls
20 lines (20 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Select Difficulty</title>
<link rel="stylesheet" href="css/styles.css" />
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<canvas id="animated-bg"></canvas>
<div class="container difficulty-select">
<h1 class="pixel-title">Select Difficulty</h1>
<button onclick="location.href='modes/normal/normal.html'">Normal</button>
<button onclick="location.href='modes/intermediate/intermediate.html'">Intermediate</button>
<button onclick="location.href='modes/ultimate/ultimate.html'">Ultimate</button>
</div>
<script src="js/script.js"></script>
</body>
</html>