-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (38 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<title>Guess the Quote</title>
<script src="jquery-2.1.4.min.js"></script>
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="wikiquotes-api/wikiquote-api.js"></script>
<script src="main.js"></script>
</head>
<!-- später können hier mehrere functions hin: <body onload="content.init(); alarm.init();"> -->
<body onload="content.init()">
<div class="container">
<div class="jumbotron">
<h1> Guess the Quote </h1>
<p>
A small game powered by the magic of
<a href="https://inventaire.io">inventaire.io</a>,
<a href="https://wikidata.org">Wikidata</a>
and
<a href="https://en.wikiquote.org">Wikiquote</a>
</p>
<a href="https://github.com/frimelle/guess-the-quote">On github</a>
</div>
<div class="alert fade-in"></div>
<div class="text-center">
<input type="button" class="btn btn-default" onclick="content.emptyPage(); content.getBooks()" value="New Quote"/>
</div>
<br/><br/>
<div class="quote"></div>
<div class="row books"></dv>
</div>
</body>
</html>