-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (52 loc) · 1.42 KB
/
index.html
File metadata and controls
62 lines (52 loc) · 1.42 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!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 Solver</title>
<link rel="stylesheet" href="./index.css" />
<link rel="stylesheet" href="./css/navbar.css" />
<style>
.hide {
visibility: hidden;
}
.show {
transition: 3s ease-in;
visibility: visible;
}
</style>
</head>
<body>
<nav>
<div id="sudokuTitle">
<span>Sudoku Solver</span>
</div>
<div id="inNav">
<div>
<span id="clickme"> New Problem</span>
</div>
<!-- <div>
<span class="signup">Sign Up</span>
</div> -->
<div id="greet">
<!-- <span id="greetings"></span> -->
<span id="clockTick"></span>
</div>
</div>
</nav>
<div id="container">
</div>
<!-- Form div will show once click on new problem -->
<!-- and will hide on clicking proceed -->
<div id="formDivAppend" class="hide"></div>
<div id="footer">
<a href="https://github.com/starving-array">@Archie</a>
</div>
</body>
</html>
<script src="./js/formCreate.js"></script>
<!-- // sudoku solver algo -->
<script src="./js/logic.js"></script>
<script src="./js/ansUp.js"></script>
<script src="./js/greetings.js"></script>