-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgameinfo.html
102 lines (101 loc) · 3.29 KB
/
gameinfo.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Info</title>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<style>
*{
margin: 0px;
}
body{
height: 100% ;
background-image: url(https://media.istockphoto.com/vectors/abstract-blurred-colorful-background-vector-id1248542684?k=20&m=1248542684&s=612x612&w=0&h=1yKiRrtPhiqUJXS_yJDwMGVHVkYRk2pJX4PG3TT4ZYM=);
background-repeat: no-repeat;
background-size: cover;
}
.rules{
display: flex;
justify-content: center;
font-size: 30px;
font-family: 'Pacifico', cursive;
margin: 12px;
color: #000000;
text-decoration-line: underline;
}
.header{
display: flex;
justify-content: center;
font-size: 70px;
font-family: 'Bebas Neue', cursive;
padding: 24px;
margin-right: 23px;
margin-left: 23px;
margin-bottom: 81px;
}
.footer{
display: flex;
justify-content: center;
font-size: 70px;
font-family: 'Bebas Neue', cursive;
padding: 24px;
margin-right: 23px;
margin-left: 23px;
margin-top: 81px;
}
#navigation {
display: flex;
justify-content: flex-end;
align-items: center;
background-image: url('https://wallpaperaccess.com/full/713148.jpg');
}
#navigation ul {
display: flex;
}
ul li {
color: rgb(255, 255, 255);
list-style: none;
}
li a {
display: block;
color: rgb(255, 255, 255);
padding: 0px 15px;
text-decoration: none;
}
#navigation ul li a:hover {
border-radius: 20px;
background-color: rgb(255, 255, 255);
color: #000000;
}
#back {
padding: 12px;
}
</style>
</head>
<body>
<nav id="navigation">
<ul>
<li class="nav" id="back"><a href="./index.html">Go Back</a></li>
</ul>
</nav>
<div class="container">
<div>
<span class="header">Put your colorful guessing skills to work</span>
</div>
<ul>
<li class="rules">Click on the correct card,matching with the color displayed in RGB format</li>
<li class="rules">Every Correct Guess awards you +1 score</li>
<li class="rules">Beware! Wrong guess will give you -0.75 score</li>
<li class="rules">The game ends once your score reaches below 0</li>
<li class="rules">Toggle between Easy and Hard mode to challenge your skills</li>
<li class="rules">Share and compete with your friends</li>
</ul>
</div>
<div>
<span class="footer">Hola Amigos!!!Have Fun</span>
</div>
</body>
</html>