-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 1.04 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
<html>
<head>
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<script src="./app.js" type="text/javascript"></script>
<link href='https://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css" media="screen" charset="utf-8">
</head>
<body>
<h2>
灯谜
</h2>
<button class="button" id="getJoke">
Get Trivia
</button>
<div id="setup"></div>
<div id="punchline"></div>
<div id="voting">
<a href="#" id="upvote">Good!</a>
<a href="#" id="downvote">Bad!</a>
</div>
<div id="votes-container">
<span id="votes"></span> people like this.
</div>
<div>
To update your own riddles click <a href="https://node-js-webdev.herokuapp.com/updatejokes">here!</a>
</div>
</body>
</html>