-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc81e728d9d4c2f636f067f89cc14862c.html
85 lines (79 loc) · 2.26 KB
/
c81e728d9d4c2f636f067f89cc14862c.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
<!DOCTYPE html>
<html>
<title>Level 1</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu"
crossorigin="anonymous"
/>
<script>
document.addEventListener("contextmenu", function (e) {
e.preventDefault();
});
function proceed() {
window.location.href = "eccbc87e4b5ce2fe28308fd9f2a7baf3";
}
function fail() {
window.location.href = "fail";
}
</script>
<style>
body {
background-color: #f5d6c6;
margin: auto;
margin-top: 30px;
width: 60%;
padding: 10px;
text-align: center;
}
header {
margin-top: 100px;
}
.div1 {
font-size: 30px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
sans-serif;
}
.div2 {
font-size: 20px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
sans-serif;
}
#press {
font-size: 18px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
sans-serif;
}
</style>
<header>
<br />
<div class="div1">Let's make this easy for you first</div>
<br />
<div class="div2">Press the Green OR Blue Button</div>
</header>
<body>
<br />
<p id="press">
Press this button to begin:
<a href="fail" class="btn btn-default" role="button">Next</a>
</p>
<br /><br />
<!--
<a href="3" class="btn btn-primary" role="button">Next</a>
<a href="3" class="btn btn-success" role="button">Next</a>
<a href="3" class="btn btn-info" role="button">Next</a>
<a href="fail" class="btn btn-warning" role="button">Next</a>
<a href="fail" class="btn btn-danger" role="button">Next</a>
-->
<button type="button" class="btn btn-primary" onClick="proceed()">
Next
</button>
<button type="button" class="btn btn-success" onClick="proceed()">
Next
</button>
<button type="button" class="btn btn-info" onClick="proceed()">Next</button>
<button type="button" class="btn btn-warning" onClick="fail()">Next</button>
<button type="button" class="btn btn-danger" onClick="fail()">Next</button>
</body>
</html>