-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrules.html
122 lines (109 loc) · 2.71 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Правила</title>
<style>
body{
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.container{
padding: 20px 50px;
font-size: 18px;
}
header {
background-color: black;
width: 100%;
position:fixed;
}
.headerInner{
display: flex;
justify-content: space-between;
}
.logo{
font-size: 36px;
font-weight: 900;
color:white;
}
ul{
display: flex;
}
li{
list-style: none;
margin-left: 40px;
}
.menuA{
text-decoration: none;
color:white;
}
.main{
background-color: rgb(216, 216, 216);
}
article{
display: flex;
justify-content: space-between;
margin: 150px 0 150px;
}
footer{
background-color: rgb(61, 61, 61);
color:white;
}
.footerInner{
margin: 50px 0 50px;
}
.footerA{
display: flex;
justify-content: space-between;
}
.aF{
text-decoration: none;
color:white;
}
h1{
text-align:center;
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="headerInner">
<div class="logo">
<div class="logo">9B CLUB</div>
</div>
<nav>
<ul>
<li><a class="menuA" href="https://gametoy20.github.io/poker.club.8b/main.html">Новости</a></li>
<li><a class="menuA" href="https://ru.wikipedia.org/">Счёт по играм</a></li>
<li><a class="menuA" href="https://ru.wikipedia.org/">Победы по дням</a></li>
<li><a class="menuA"><b>Правила</b></a></li>
</ul>
</nav>
</div>
</div>
</header>
<main>
<div class="container">
<div class="mainInner">
<img src="poker.jpg">
<h1>Правила игры Squid Marble</h1>
<article>
<p>
В этом режиме побеждает игрок, набравший 20$ (шариков), как в одной из испытаний сериала "Игра в кальмара". Это означает, что победителей может быть несколько. <b>Начальный баланс: 10$.</b>
</p>
</article>
</div>
</div>
</main>
<footer>
<div class="container">
<div class="footerInner">
<div class="footerA">
</div>
<p class="pF">@ 2021 г. Все права защищены.</p>
</div>
</div>
</footer>
</body>
</html>