-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbattle.html
37 lines (37 loc) · 1.08 KB
/
battle.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./dist/css/styles.css" />
<title>Battle Arena</title>
</head>
<body>
<!-- Entities -->
<ul class="entities-list">
<li class="entity-player">
<img
src="./node_modules/pokemon-sprites/sprites/pokemon/versions/generation-v/black-white/animated/back/2.gif"
alt=""
/>
</li>
<li class="entity-opponent">
<img
src="./node_modules/pokemon-sprites/sprites/pokemon/versions/generation-v/black-white/animated/4.gif"
alt=""
/>
</li>
</ul>
<!-- Messages -->
<div class="message hidden">
<p class="main-text">The battle is about to start...</p>
<button type="button" class="hidden">
<p class="icon-text">▿</p>
</button>
</div>
<!-- Background -->
<div class="battle-background">
<img src="./src/battle-background-1.jpg" alt="" />
</div>
</body>
</html>