forked from Toriality/DYOM-Bingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
58 lines (55 loc) · 2.32 KB
/
help.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
<!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">
<link rel="icon" type="image/x-icon" href="./images/favicon.ico">
<link rel="stylesheet" href="./styles/global.css">
<link rel="stylesheet" href="./styles/header.css">
<link rel="stylesheet" href="./styles/article.css">
<link rel="stylesheet" href="./styles/footer.css">
<title>DYOM Bingo Tutorial</title>
</head>
<body>
<header></header>
<article>
<div class="container">
<h1>How to play?</h1>
<p>
The game consists of a 5x5 Bingo card. You should mark a slot as
completed when the content written on it happens during your play. For
example, if you have a "Mission name is DYOM" slot and the name of the
mission you are playing is "DYOM", you can mark the slot as completed
by clicking on it.
<br>
<br>
The first player who manages to mark 5 consecutive slots wins the
match. The more players, the more fun and challenging the match will
be.
<br>
<br>
Currently, the Bingo has 156 different slots that you can generate
by reloading the page or clicking on "Generate new card" button. If
you generate a new card without completing the current one, you will
lose a point. If you succeed in completing the current card, you will
win a point.
<br>
<br>
Although the missions are randomly picked, and you have no control
over their content, this Bingo game still does not consist entirely of
luck. There are a few techniques you can use to beat your opponents.
Completing missions as quickly as possible so that you gain new
content faster, or skipping missions that do not seem to have any
content that exists in your Bingo slots are some possible techniques
to beat the game before the other players.
<br>
<br>
</p>
<img src="./images/logo.png" style="width:100%;" alt="DYOM Bingo Logo">
</div>
</article>
<footer></footer>
<script src="./scripts/import.js" type="module"></script>
</body>
</html>