-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexploreTechlev2.html
More file actions
164 lines (151 loc) · 3.66 KB
/
Copy pathexploreTechlev2.html
File metadata and controls
164 lines (151 loc) · 3.66 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<head>
<title>Level Two</title>
<link rel="icon" type="image/png" href="./images/sunglasses-pusheen.png">
</head>
<style>
h1, h2, h3{
color: #7CFC00;
font-weight: bold;
font-family: Courier New, monospace;
}
h4{
color: #7CFC00;
font-weight: normal;
font-family: Courier New, monospace;
}
h5{
color: #7CFC00;
font-size: 10px;
font-weight: bold;
font-family: Courier New, monospace;
}
p{
color: #7CFC00;
font-family: Courier New, monospace;
}
li{
color: #7CFC00;
font-family: Courier New, monospace;
}
body
{
background-color: #000000;
}
.submit{
display: inline-block;
}
.paragraphs:hover{
background-color: #C0C0C0;
}
.headers:hover{
background-color: #C0C0C0;
}
.forms:hover{
background-color: #C0C0C0;
}
.Image:hover{
background-color: #C0C0C0;
}
.Bold:hover
{
background-color: #C0C0C0;
}
.List:hover
{
background-color: #C0C0C0;
}
.FirstStep
{
display: inline;
}
input{
width: 2%;
text-align: center;
align-content: center;
height: 50px;
size: 30px;
font-weight: bold;
font-family: Arial,sans-serif;
border-radius: 5px;
margin: auto;
vertical-align: middle;
}
.startbuttn{
color: #FF0000;
height: 30px;
width: 30%;
font-family: Courier New, monospace;
}
input:hover{
background-color: #F0E68C;
opacity: 0.8;
}
.submit button{
width: 15%;
text-align: center;
background-color: #FF0000;
align-content: center;
height: 15px;
border-radius: 25px;
margin-top: 5px;
font-family: Courier New, monospace;
}
form{
align-items: center;
</style>
<body>
<script src = "lev2Functions.js"></script>
<h1> Top Secret Spy Service </h1>
<img height="200px" src="./images/sunglasses-pusheen.png"/>
<p>Your mission, if you choose to accept it is to find the three mystery numbers and input them into the secret code bar below! If your code is correct, you will advance to the next round. Good luck!</p>
<h2> MEET YOUR ELEMENTS </h2>
<div class = "paragraphs">
<h3> "< p >" </h3>
<p> We use paragraphs to write out regular text</p>
</div>
<div class = "headers">
<h3> "< h >" </h3>
<p> We use headers for titles and subtitles </p>
</div>
<div class = "forms">
<h3> "< form >"</h3>
<p> Forms allow us to collect information from users </p>
</div>
<div class = "Image">
<h3> "< img >"</h3>
<p> Images can be inserted into our website </p>
</div>
<div class = "Bold">
<h3> "< b >"</h3>
<p> Text can bolded for more emphasis</p>
</div>
<div class = "List">
<h3> "< list >"</h3>
<li> Lists Contain Organized Descriptioins</li>
<li> Usually in a Bullet Point Format </li>
</div>
<div id = "startbuttn">
<button type = "button" id = "start" onclick= "stepOne()">Start!</button>
<h1> ENTERING SECRET SPY DATABASE </h1>
</div>
<p id = "PartOne">Our goal is to make sure Computer Science reigns supreme at USC.</p>
<button id = "CallFunction2" onclick = "stepTwo()"> NEXT. </button>
<h4 id = "CSHeader"> UCLA Computer Science Data Lab </h4>
<button id = "CallFunction3" onclick = "stepThree()"> NEXT. </button>
<li> Information </li>
<li> Opening Hour: 8am </li>
<li id = "ListTwo"> Closing Hour: 8pp </li>
<button id = "CallFunction4" onclick = "stepFour()"> NEXT. </button>
<h5 id = "header five"> Be sure to stop by and say hello! <h5>
<button id = "CallFunction5" onclick = "stepFive()"> NEXT. </button>
<form id = "finalcode">
<div class = "submit">
<input type = "text" id= "firstchar"></input>
<input type = "text" id = "secondchar"></input>
<input type = "text" id = "thirdchar"></input>
<input type = "text" id = "fourthchar"></input>
<button type = "button" onclick= "submission()"> <b>Submit</b></button>
</div>
</form>
</body>