-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (88 loc) · 2.64 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="icon" href="images/logo1.png" type="image/x-icon" />
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/styles.css" />
<title>Zombie vs Human!</title>
</head>
<body>
<!--Game Header-->
<header>
<div>
<img src="images/logo3.png" class="game-logo" alt="game logo" />
<h1 id="title">Zombie vs Human</h1>
</div>
</header>
<!--End of Game Header-->
<!--Game components container-->
<div class="container">
<!--Start of Landding page Intro to game rules-->
<section class="game-intro">
<div class="game-rules">
<h2>Welcome to Zombie vs Human</h2>
<p>GAME RULES:</p>
<ul>
<li>
Every single player can move up to 3 steps horizontally or
vertically.
</li>
<li>
Each player start the game with 100% health and initial weapon.
</li>
<li>
During the game to collect weapons to become stronger, so try to
collect strong weapon.
</li>
</ul>
<div class="game-weapons">
<figure>
<img src="images/weapon-1.png" alt="" />
<caption>
15
</caption>
</figure>
<figure>
<img src="images/weapon-2.png" alt="" />
<caption>
30
</caption>
</figure>
<figure>
<img src="images/weapon-3.png" alt="" />
<caption>
45
</caption>
</figure>
<figure>
<img src="images/weapon-4.png" alt="" />
<caption>
60
</caption>
</figure>
</div>
<ul>
<li>
When the two players are close to each other the fight start.
</li>
<li>The winner is the last man standing.</li>
</ul>
<p>Enjoy the game :)</p>
<a class="btn" id="start" href="game.html">PLAY NOW!</a>
</div>
</section>
<!--End of Landding page Intro to game rules-->
</body>
</html>