-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (59 loc) · 3.4 KB
/
index.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
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Izzy's-Literary-Trivia-Game</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../Izzy-Trivia-Game/assets/css/style.css">
<link rel="stylesheet" href="../Izzy-Trivia-Game/assets/css/reset.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface|Zilla+Slab&display=swap" rel="stylesheet">
</head>
<body>
<!--Start of the Background Video from Magic Book-->
<video playsinline muted autoplay loop id="videoBackground">
<source src="../Izzy-Trivia-Game/assets/videos/Magic-book-with-animation-glowing-letters.mp4">
</video>
<!--End of the Background Video from Magic Book-->
<!--Start of the Jorge Luis Borges Video-->
<video id="videoWin" class="col s12 m4 l3" autoplay muted
src='../Izzy-Trivia-Game/assets/videos/Jorge_Luis_Borges.m4v'>
</video>
<!--End of the Jorge Luis Borges Video-->
<div class="center-align container col s12 m4 l3">
<div class="card col s12 m4 l3 center-align">
<!---Start of the Read Button, if click again it types the quotes faster and ToolTips Javascript from Materialize-->
<a id='ReadButton' class="col s12 m4 l3 center-align btn tooltipped row red lighten-3" data-position="top"
data-tooltip="Click 'Read Here' to start Game" onclick='startGame()'>Read Here</a>
<!---End of the Read Button, if click again it types the quotes faster and ToolTips Javascript from Materialize-->
<!---Start of the Results of Literary-->
<p id="results"></p>
<!---End of the Results of Literary-->
<!---Start of the Card-Tabs From Materialize-->
<div class="card-tabs col s12 m4 l3">
<ul class="tabs tabs-fixed-width col s12 m4 l3">
<li class="tab tooltipped" data-position="top" data-tooltip="Click on a name as your answer"><a
class="active" href="#optionA">Julio Cortez</a></li>
<li class="tab tooltipped" data-position="top" data-tooltip="Click on a name as your answer"><a
href="#optionB">David Foster Wallace</a></li>
<li class="tab tooltipped" data-position="top" data-tooltip="Click on a name as your answer"><a
href="#optionC">Jorge Luis Borges</a></li>
<li class="tab tooltipped" data-position="top" data-tooltip="Click on a name as your answer"><a
href="#optionD">Cormac McCarthy</a> </li>
</ul>
</div>
<!---End of the Card-Tabs From Materialize-->
<audio id="myAudio">
<source src="../Izzy-Trivia-Game/assets/sound/Typewriter.mp3" type="audio/mpeg">
<source src="../Izzy-Trivia-Game/assets/sound/TypewriterNoBell.mp3" type="audio/mpeg">
</audio>
<!---End of the Main Container-->
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="../Izzy-Trivia-Game/assets/javascript/app.js"> </script>
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"> </script>
</html>