-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.69 KB
/
Copy pathindex.html
File metadata and controls
40 lines (40 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Which TCAL character are you?">
<link rel="stylesheet" href="styles.css">
<title>TCAL Personality Test</title>
</head>
<body>
<div id="quiz-container">
<div id="quiz-header">
<h1>TCAL Personality Test</h1>
<p>Which <u>The Coffin of Andy and Leyley</u> character are you?</p>
</div>
<div id="quiz-content">
<div id="intro">
<img src="img/profile.png" alt="Intro Image">
<p>This test will match you to one of nine characters from the game. There are 18 questions.<br><br>There are no right or wrong answers. We recommend that you read carefully and answer honestly in order to get accurate results.<br><br>(Content Warning: Questions discuss topics of death, abuse, suicide, and murder.)</p>
<button onclick="startQuiz()">Start</button>
</div>
</div>
</div>
<div class="audio-player">
<audio id="audio" controls>
<source id="audio-source" src="img/audio1.mp3" type="audio/mp3">
Your browser does not support the audio element.
</audio><br>
<select id="audio-select" onchange="changeAudio()">
<option value="img/audio1.mp3">1. Q1-5 - Strain (ZE:VLR)</option>
<option value="img/audio2.mp3">2. Q6-13 - Shanghai Alice of Meiji 17 (EoSD)</option>
<option value="img/audio3.mp3">3. Q14-18 - Questioning ~ Allegro (PW:T&T)</option>
</select>
</div>
<footer id="page-footer">
<p>Created by onehalf. <a href = "https://github.com/llamaware/tcal-personality">info</a></p>
</footer>
<script src="script.js"></script>
</body>
</html>