-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.old.html
More file actions
52 lines (50 loc) · 1.14 KB
/
index.old.html
File metadata and controls
52 lines (50 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>🤩15 Puzzle🤩</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: #555;
margin: 0;
}
#container {
width: 100%;
height: 700px;
-webkit-perspective: 800px;
-webkit-perspective-origin: 50% 225px;
-moz-perspective: 800px;
-moz-perspective-origin: 50% 225px;
perspective: 800px;
perspective-origin: 50% 225px;
}
#info {
color:white;
position: absolute;
top: 6%;
width: 100%;
text-align:center;
}
#name {
font-family: 'Luckiest Guy', cursive;
font-size:70px;
color:yellow;
}
</style>
<script src="./index.js" defer></script>
</head>
<body>
<div id="info">
<div id="name">
15 PUZZ2
</div>
<div>
<button id="original">ORIGINAL</button>
<button id="change">CHANGE</button>
<button id="solve">SOLVE</button>
<button id="random">RANDOMIZE</button>
</div>
</div>
</body>
<link href="https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap" rel="stylesheet">
</html>