-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.64 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.64 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./styles/styles.css">
<title>Fight Night!</title>
</head>
<body>
<i class="fas fa-volume-off"></i>
<audio id="mortalKombat" src="./media/mortalKombat.mp3" loop="loop"></audio>
<audio id="bearRoar" src='./media/bear.mp3'></audio>
<!---- Choose Fighter Menu -->
<header class="header">
<h1>choose your fighter</h1>
</header>
<div id="" class="wrapper">
<div id="choose" class="character1">
<div class="opacityCharacter1"></div>
<button class="">SELECT THIS FIGHTER</button>
</div>
<div id="choose" class="character2">
<div class="opacityCharacter2"></div>
<button class="">SELECT THIS FIGHTER</button>
</div>
<div id="choose" class="character3">
<div class="opacityCharacter3"></div>
<button class="">SELECT THIS FIGHTER</button>
</div>
<div class="bear notChosen"></div>
<div class="playerSelection notChosen"></div>
<div class="computerSelection notChosen"></div>
</div>
<div id="choices" class="notChosen">
<ul>
<li><button class="rock">rock</button></li>
<li><button class="paper">paper</button></li>
<li class=".scissorsLi"><button class="scissors">scissors</button></li>
<li id="backToCharSelect"><button class="backToCharSelect">Select A New Character</button></li>
</ul>
</div>
<script type="text/javascript" src="./scripts/main.js"></script>
</body>
</html>