-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpotter.html
45 lines (33 loc) · 848 Bytes
/
potter.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Trivia Potterhead</title>
<link rel="stylesheet" href="styles/potterstyle.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
</head>
<body>
<div class="white">
<div class="image">
</div>
</div>
<div id="nogame">
</div>
<div id="total">
</div>
<div class="square">
<h3>Respuestas Correctas</h3>
<hr>
<div id="correct">
</div>
</div>
<div class="square">
<h3>Tu respuesta</h3>
<hr>
<div id="reply">
</div>
</div>
<script type="text/javascript" src="app.js">
</script>
</body>
</html>