-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMiniQuizGames.html
More file actions
63 lines (51 loc) · 956 Bytes
/
MiniQuizGames.html
File metadata and controls
63 lines (51 loc) · 956 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Quiz Games</title>
<style>
body {
font-family:Arial;
text-align:center;
background-color:lightgreen;
margin:0;
padding:20px;
}
h1 {
margin-bottom:30px;
color:blue;
}
.container-wrapper {
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
}
.game {
width:250px;
height:150px;
background-color:yellow;
color:red;
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
text-decoration:none;
font-size:1.2rem;
transition:transform 0.2s,background-color 0.2s;
}
.game:hover {
transform:scale(1.05);
background-color:orange;
}
</style>
</head>
<body>
<h1>Welcome to Mini Quiz Games </h1>
<div class="container-wrapper">
<a href="gk-quiz.html" class="game">GK Quiz</a>
<a href="html-quiz.html" class="game">HTML Quiz</a>
<a href="hangman.html" class="game">Hangman </a>
</div>
</body>
</html>