-
Notifications
You must be signed in to change notification settings - Fork 2
/
rules.html
84 lines (80 loc) · 2.21 KB
/
rules.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=<device-width>, initial-scale=1.0">
<title>Document</title>
</head>
<style>
#rules{
padding-top:30px;
background-image: url("treedark.jpg");
display:flex;
flex-direction: column;
align-items: center;
height:160vh;
width:100%;
}
.rulehead{
font-size:75px;
display: flex;
align-items: center;
color: rgb(136, 40, 136);
}
.ul_li{
font-size:35px;
padding-top:30px;
color:white;
}
.bestluck{
font-size:42px;
color:red;
}
.return a{
color:white;
text-decoration: none;
border:1px solid white;
border-radius: 20px;
padding: 10px 10px;
}
@media only screen and (max-width:1000px)
{
.rulehead
{
font-size:40px;
}
.ul_li{
font-size:20px;
}
#rules{
height:120vh;
}
}
</style>
<body>
<section id = "rules">
<div class = "rulehead">
Rules Of The Game
</div>
<hr>
<div class = "rulelist">
<ul>
<li class = "ul_li">One user may select only 4 tickets.</li>
<li class = "ul_li">Ticket should be multiple of 10 and from range 10 to 100 .</li>
<li class = "ul_li">You can't select 2 same tickets.</li>
<li class = "ul_li">This game is fully based on Luck.</li>
<li class = "ul_li">If you win, then you are asked to send screenshot to our mail.</li>
<li class = "ul_li">If you lose, then you can play again but it will be worthless.</li>
<li class = "ul_li">Any type of bluff may lead you to disqualified from game.</li>
<li class = "ul_li">It is assumed that you have read all terms and conditions till now.</li>
</ul>
</div>
<div class = "bestluck">
Best of Luck...<br><br>
</div>
<div class = "return">
<a href = "index.html">Return To Home Page</a>
</div>
</section>
</body>
</html>