Spaces:
Runtime error
Runtime error
Commit
·
2ff702d
1
Parent(s):
d19e511
Upload index.html
Browse files- index.html +60 -0
index.html
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Stu-Studios Clown_Town_app</title>
|
5 |
+
<style>
|
6 |
+
body {
|
7 |
+
background-image: url('img_underground_clown.jpg.png');
|
8 |
+
background-size: cover;
|
9 |
+
}
|
10 |
+
.container {
|
11 |
+
text-align: center;
|
12 |
+
color: dark slate-blue;
|
13 |
+
background-color: white;
|
14 |
+
border: 2px solid dark slate-blue;
|
15 |
+
margin: 50px auto;
|
16 |
+
padding: 20px;
|
17 |
+
width: 50%;
|
18 |
+
}
|
19 |
+
.options {
|
20 |
+
background-color: white;
|
21 |
+
border: 2px solid dark slate-blue;
|
22 |
+
margin: 10px;
|
23 |
+
padding: 10px;
|
24 |
+
width: 20%;
|
25 |
+
display: inline-block;
|
26 |
+
cursor: pointer;
|
27 |
+
}
|
28 |
+
.options:hover {
|
29 |
+
background-color: dark slate-blue;
|
30 |
+
color: white;
|
31 |
+
}
|
32 |
+
</style>
|
33 |
+
</head>
|
34 |
+
<body>
|
35 |
+
<div class="container">
|
36 |
+
<h1>Stu-Studios</h1>
|
37 |
+
<h2>Clown_Town_app</h2>
|
38 |
+
<p>Welcome to the app that will scare you senseless or have you in stitches!</p>
|
39 |
+
<h3>Select a genre:</h3>
|
40 |
+
<div class="options" id="option1">Funny</div>
|
41 |
+
<div class="options" id="option2">Freaky</div>
|
42 |
+
<div class="options" id="option3">Scary</div>
|
43 |
+
<div class="options" id="option4">Insane</div>
|
44 |
+
<h3>Select a story teller:</h3>
|
45 |
+
<div class="options" id="option5">Male</div>
|
46 |
+
<div class="options" id="option6">Female</div>
|
47 |
+
<h3>Select a story telling style:</h3>
|
48 |
+
<div class="options" id="option7">Relaxed</div>
|
49 |
+
<div class="options" id="option8">Tense</div>
|
50 |
+
<div class="options" id="option9">Scared</div>
|
51 |
+
<div class="options" id="option10">Funny</div>
|
52 |
+
<h3>Select creativity level:</h3>
|
53 |
+
<div class="options" id="option11">Low</div>
|
54 |
+
<div class="options" id="option12">Medium</div>
|
55 |
+
<div class="options" id="option13">High</div>
|
56 |
+
<br><br>
|
57 |
+
<div id="story"></div>
|
58 |
+
</div>
|
59 |
+
</body>
|
60 |
+
</html>
|