forked from ErykFryderyk/Sort-Ball-Game-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheasy.html
47 lines (44 loc) · 1.62 KB
/
easy.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
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sort Ball</title>
<link rel="stylesheet" href="./fontawesome-free-5.13.0-web/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="menu-square">
<h1>Sort Ball</h1>
</div>
<div class="game-square">
<div class="box">
<div class="rectangle">
<div title="red" class="ball ball-red"></div>
</div>
<div class="rectangle">
<div title="blue" class="ball ball-blue"></div>
</div>
<div class="rectangle">
<div title="green" class="ball ball-purple"></div>
</div>
<div class="rectangle"></div>
</div>
</div>
<div class="options">
<a class="menu-btn" href="index.html" title="Back to menu">Menu</a>
<button class="reload-btn" title="Reset"><i class="fas fa-undo-alt"></i></button>
</div>
</div>
<div class="body-overlay">
<div class="win-box">
<h2>Congratulation you Win :)</h2>
<a class="menu-btn" href="medium.html" title="Next level">Next level</a>
<a class="menu-btn" href="easy.html" title="Play again"><i class="fas fa-undo-alt"></i></a>
<a class="menu-btn" href="index.html" title="Back to menu">Menu</a>
</div>
</div>
<script src="script.js"></script>
</body>
</html>