-
Notifications
You must be signed in to change notification settings - Fork 3
/
custom.html
48 lines (45 loc) · 2.11 KB
/
custom.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="sleuth.css">
<title>Sleuth JS</title>
<style>
#titlescreen {
text-align: center;
width: 600px;
margin-left: auto;
margin-right: auto;
}
.redlink a {
color: red;
}
.redlink a:visited {
color: red;
}
#copyright {
font-size: 10px;
}
</style>
<meta name="description" content="Sleuth JS: Text-Mode Detective Game. An implementation of the 80s DOS classic, that you can play in your browser.">
</head>
<body>
<div id="titlescreen">
<p><b>C U S T O M S L E U T H <font color="Green">J</font> <font color="Red">S</font></b></p><br/>
<p><u>Characters</u></p>
<p>Enter first and last names for custom characters!</p><br/>
<form action="sleuth.html" method="GET">
<p>1. First name <input type="text" name="1_1" required/> last name <input type="text" name="1_2" required/></p>
<p>2. First name <input type="text" name="2_1" required/> last name <input type="text" name="2_2" required/></p>
<p>3. First name <input type="text" name="3_1" required/> last name <input type="text" name="3_2" required/></p>
<p>4. First name <input type="text" name="4_1" required/> last name <input type="text" name="4_2" required/></p>
<p>5. First name <input type="text" name="5_1" required/> last name <input type="text" name="5_2" required/></p>
<p>6. First name <input type="text" name="6_1" required/> last name <input type="text" name="6_2" required/></p>
<p>7. First name <input type="text" name="7_1" required/> last name <input type="text" name="7_2" required/></p>
<p>8. First name <input type="text" name="8_1" required/> last name <input type="text" name="8_2" required/></p>
<br/><br/>
<p><input type="submit" value="Start Custom Sleuth!"></p>
</form>
<p><div id="copyright"><br/><br/>This code copyright Ben Collier 2013. Original code, design, story and concept copyright Eric N. Miller.</font></div></p>
</div>
</body>
</html>