-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Hero Fight</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap" rel="stylesheet">
<link href="./main.css" rel="stylesheet" />
</head>
<body id="body">
<div class="wrapper" id="wrapper">
<div class="container" id="container">
<h1>Hero Fighting Game</h1>
<h2>How to play:</h2>
<h3>1. Both players choose a hero by searching like "batman" or "spider-man" or they can generate a random hero
</h3>
<h3>2. Players can see Heros statistics: intelligence for heal, strength for attack power and durability for
health
points value</h3>
<h3>3. Player 1 attack with "Q" and heal with "A" keys</h3>
<h3>4. Player 2 attack with "P" and heal with "L" keys</h3>
<h3>5. Direct fight only on desktop version. Players can simulate the combat on mobile!</h3>
</div>
<div class="buttons">
<a href="./heroPick.html" class="playButton">PLAY</a>
<a href="https://github.com/Zasada94">Back to Github</a>
</div>
</div>
<script src="./index.js"></script>
</body>
</html>