forked from itscodenation/int-cyoa-18-19-solution
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·92 lines (71 loc) · 2.66 KB
/
index.html
File metadata and controls
executable file
·92 lines (71 loc) · 2.66 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Choose Your Own Adventure</title>
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="vendor/animate/animate.css" rel="stylesheet" type="text/css">
<!-- Theme CSS -->
<link href="css/grayscale.css" rel="stylesheet">
<style>
.btn, .btn:active, .btn:focus {
background-color: rgba(255,255,255,0);
color: white;
border: 1px white solid;
border-radius: 3px;
}
.btn:hover, .btn:active, .btn:focus {
outline: none !important;
box-shadow: none;
color: white;
}
.btn:hover {
background-color: rgba(255,255,255,0.3);
}
.btn:active {
background-color: rgba(255, 255, 255, 0.9);
transition: 0.1s;
}
#choices {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
#choices button {
margin-bottom: 10px;
}
</style>
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<audio id="music" src="" autoplay loop ></audio>
<header id="background-image" class="intro">
<div class="intro-body">
<div class="container">
<div class="row" id="wrapper">
<div class="col-md-8 col-md-offset-2">
<p class="intro-text" id="prompt"></p>
</div>
<div class="col-md-8 col-md-offset-2" id="choices"></div>
</div>
</div>
</div>
</header>
<!-- jQuery -->
<script src="vendor/jquery/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="js/game.js"></script>
<script src="js/script.js"></script>
</body>
</html>