-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandomBoard.html
More file actions
44 lines (32 loc) · 1.38 KB
/
randomBoard.html
File metadata and controls
44 lines (32 loc) · 1.38 KB
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
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Random Board</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/random.css" />
</head>
<body>
<main>
<wrapper class="grid-1"></wrapper>
<wrapper class="grid-2"></wrapper>
<wrapper class="grid-3"></wrapper>
<wrapper class="grid-4"></wrapper>
<wrapper class="grid-5"></wrapper>
<wrapper class="grid-6"></wrapper>
<wrapper class="grid-7"></wrapper>
<wrapper class="grid-8"></wrapper>
</main>
<footer>
<button class="button" id="button-green"> <a href="board1.html" title="board1">Easy </a></button>
<button class="button" id="button-yellow"><a href="board3.html" title="board3">Medium</a></button>
<button class="button" id="button-red"><a href="board2.html" title="board2">Hard</a></button>
<button class="button" id="button-home"><a href="index.html" title="randomBoard">Home</a></button>
</footer>
<p> Please Note: At the moment this board is completly random and therefore the rules of this game do not apply.</p>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="js/random.js"></script>
</body>
</html>