-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorial.html
80 lines (80 loc) · 2.18 KB
/
tutorial.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
<!-- All updates on this document can be found on the GitHub page! -->
<!-- https://github.com/Martin-Zurek/PersonalBinaryPuzzleGame -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Tutorial - Binary Puzzle Game</title>
<link rel="icon" href="images/logo.png" />
<style type="text/css">
body {
background-color: rgba(215, 215, 215);
}
h1 {
font-family: "Trebuchet MS", sans-serif;
font-size: 50px;
text-align: center;
letter-spacing: 2px;
text-shadow: 2px 2px 2px white;
}
h2 {
font-family: "Trebuchet MS", sans-serif;
font-size: 30px;
text-align: center;
letter-spacing: 1px;
text-shadow: 2px 2px 2px white;
}
h3 {
font-family: "Trebuchet MS", sans-serif;
font-size: 15px;
text-align: center;
letter-spacing: 1px;
text-shadow: 1.5px 1.5px 1.5px white;
}
button {
background-color: rgba(0, 150, 0);
font-size: 15px;
text-align: center;
border: none;
color: white;
width: 150px;
padding: 15px 30px;
transition-duration: 0.2s;
display: block;
margin-left: auto;
margin-right: auto;
}
button:hover {
background-color: rgba(0, 200, 0);
}
button:active {
transform: translateY(5px);
}
img {
width: 75px;
height: 75px;
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<h1>Binary Puzzle Game</h1>
<h2>Tutorial Page</h2>
<br />
<h3><i>PLEASE READ CAREFULLY</i></h3>
<h3>1: Click "Play" on the "index.html" page.</h3>
<h3>2: Select the game in the dropdown menu under "Pick A Game" heading.</h3>
<h3>3: Press any of the buttons under "Pick A Button" heading.</h3>
<h3>4: You will see calculations occuring in the game box.</h3>
<h3>5: Tutorial has been completed!</h3>
<br />
<button onclick="document.location='index.html'">Return</button>
<br />
<h3>Coded By Martin</h3>
<br />
<img src="images/logo.png" />
<br />
</body>
</html>