-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (42 loc) · 913 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<style>
body {
background-image: url('space.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
.mainContent{
text-align: center;
vertical-align: middle;
width: 60%;
height: 30%;
background-color: white;
border-radius: 25px;
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: table;
}
.innerText{
display: table-cell;
vertical-align: middle;
text-align: center;
}
</style>
<body>
<div class="mainContent" id="mContent">
<div class="innerText" id="iText">
<h1>Sudoku solver 2.0</h1>
<p>Input your puzzle by clicking each button.</p>
<p>Refresh the page to reset grid.</p>
<script src="src/sudoku.js"></script>
<br></br>
</div>
</div>
</body>
</html>