-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (39 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<title>Series Movies Quizzes</title>
<link rel="stylesheet" type="text/css" href="Quiz.css">
</head>
<body>
<style>
body {
background: #aa80ff;
background-image: url('back1.jpg');
}
</style>
<div class=title>
<h1> TV Series Quizzes
</h1>
</div>
<div class=topics>
<div table>
<div row>
<button id=subject onclick="document.location='friends.html'"
style="border-radius: 25px;">Friends</button>
</div>
<div row>
<button id=subject onclick="document.location='himym.html'" style="border-radius: 25px;">HIMYM</button>
</div>
<div row>
<button id=subject onclick="document.location='bigbang.html'" style="border-radius: 25px;">The Big Bang
Theory</button>
</div>
<div row>
<button id=subject onclick="document.location='rick_and_morty.html'" style="border-radius: 25px;">Rick
and Morty</button>
</div>
</div>
</div>
<script src="Quiz.js"></script>
</body>
</html>