-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 991 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
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="hu">
<head>
<title>Minesweeper</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="./css/main.css">
</head>
<body>
<audio src="./resources/8bit_trip.mp3" loop="true" autoplay></audio>
<header>
</header>
<main>
<table id="minefield"></table>
<div id="beallitasok">
<div id="nehezseg">
<form id="choose">
<input type="radio" name="diff" id="easy" value="10">
<label for="easy">Könnyű</label><br>
<input type="radio" name="diff" id="med" value="20" checked>
<label for="med">Közepes</label><br>
<input type="radio" name="diff" id="hard" value="40">
<label for="hard">Nehéz</label><br>
</form>
</div>
<button onclick="generateMinefield();">Új játék</button>
</div>
<div id="leaderboard">
</div>
</main>
<footer>
<p id="foot">Minesweeper</p>
</footer>
<script type="text/javascript" src="./javascript/app.js"></script>
</body>
</html>