-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.html
69 lines (60 loc) · 2.77 KB
/
questions.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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ShadowBanshee</title>
<link rel="icon" href="Images/ZineButtons/bansheebutton1.png">
<link rel="stylesheet" href="CSS/normalize.css">
<link rel="stylesheet" href="CSS/home.css">
<link rel="stylesheet" href="CSS/questions.css">
<link rel="stylesheet" href="CSS/loader.css">
<link rel="preload" href="Images/gif.gif" as="image">
</head>
<body>
<body>
<div id="loadingScreen">
<img src="Images/gif.gif" alt="">
<div id="loadingBarContainer">
<div id="loadingBar"></div>
</div>
</div>
<div id="pageContent">
<div class="header">
<button type="button" class="home" onclick="window.location.href='index'">
<img src="Images/title/Oneeyedsuperkid.png" />
<p class=title>Home of The Shadow Banshee, The Dreamwalker, The Superkid and more...    </p>
</button>
</div>
<div class="container">
<img src="Images/clouds.gif" class="clouds">
</div>
<div class="edge">
<img src="Images/example_question.png" class="example_question">
<img src="Images/speghatti_question.png" class="speghatti_question">
<img src="Images/issue2.png" class="issue2">
</div>
<form id="questionForm" class="container">
<button class="buttonHeader" onclick="window.location.href='periodical'">
<img src="Images/periodical_logo.png" alt="">
</button>
<p>LEAVE THE INFO YOU WANT DISPLAYED IN MY ZINE :)</p>
<input class="name text" placeholder="Name (optional)">
<input class="contact text" placeholder="@ or Business (optional)">
<p>LEAVE BLANK FOR -ANONYMOUS</p>
<textarea class="question text" placeholder="Your Question Here"></textarea>
<button id="submit">Submit</button>
</form>
<div class="bottom">
<img src="Images/peter_question.png" class="peter_question">
<img src="Images/superkid_quesion.png" class="superkid_quesion">
</div>
</div>
<script src="JS/main.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.10.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.10.0/firebase-database-compat.js"></script>
<script src="JS/firebase-config.js"></script>
<script src="JS/send.js"></script>
<script src="JS/loading.js"></script>
</body>
</html>