-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (97 loc) · 4.16 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sudoku</title>
<link rel="icon" href="/favicon/favico.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Tilt+Warp&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="body-wrapper">
<div class="haeder-wrapper">
<div class="logo">
Sudoku
</div>
<div id="stats" class="stats">
<p id="timer" class="text-animation"></p>
<p id="lives" class="text-animation"></p>
</div>
</div>
<div class="container">
<div id="game" class="sidebar">
<div id="game-radio" class="game-actions">
<div id="diff">
<h3>Difficulty Level:</h3>
<label class="radio">
<input id="diff-1" type="radio" name="diff" value="easy" checked />
<span class="radio-label">Easy</span>
</label>
<label class="radio">
<input id="diff-2" type="radio" name="diff" value="medium" />
<span class="radio-label">Medium</span>
</label>
<label class="radio">
<input id="diff-3" type="radio" name="diff" value="hard" />
<span class="radio-label">Hard</span>
</label>
</div>
<div id="time">
<h3>Counter:</h3>
<label class="radio">
<input id="time-1" type="radio" name="time" value="three" checked />
<span class="radio-label">3 Min</span>
</label>
<label class="radio">
<input id="time-2" type="radio" name="time" value="five" />
<span class="radio-label">5 Min</span>
</label>
<label class="radio">
<input id="time-3" type="radio" name="time" value="ten" />
<span class="radio-label">10 Min</span>
</label>
</div>
<div id="theme">
<h3>Theme:</h3>
<label class="radio">
<input id="theme-1" type="radio" name="theme" value="light" checked />
<span class="radio-label">Light</span>
</label>
<label class="radio">
<input id="theme-2" type="radio" name="theme" value="dark" />
<span class="radio-label">Dark</span>
</label>
</div>
<div class="game-btn-container">
<button id="start-btn" class="game-btn">New Game</button>
</div>
</div>
</div>
<div class="board-wrapper">
<div id="board"></div>
</div>
<div id="number-container" class="number-container hidden">
<p id="one">1</p>
<p id="two">2</p>
<p id="three">3</p>
<p id="four">4</p>
<p id="five">5</p>
<p id="six">6</p>
<p id="seven">7</p>
<p id="eight">8</p>
<p id="nine">9</p>
</div>
</div>
<div class="footer-wrapper">
<footer>
<p>Made with <code>love 🥰😍🤟♥💓💗💖</code> by Shivani Gupta</p>
</footer>
</div>
</div>
<script src="script.js"></script>
</body>
</html>