forked from ajandorek/week-4-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 957 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Overwatch RPG</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<script src="https://code.jquery.com/jquery-3.1.1.js" integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA=" crossorigin="anonymous"></script>
<script type="text/javascript" src="assets/javascript/game.js"></script>
</head>
<body>
<div class="container-fluid wrapper">
<h1>Overwatch RPG!</h1>
<h2>Your Character</h2>
<div class="heroes">
<div class="char initial" value="reaper">
</div>
<div class="char initial" value="winston">
</div>
<div class="char initial" value="hanzo">
</div>
<div class="char initial" value="soldier">
</div>
</div>
<h2>Enemies Available To Attack</h2>
<div id="enemies"></div>
<h2>Fight Section</h2>
<button>Attack</button>
<h2>Defender</h2>
<div id="defender"></div>
<div class="yourAttack"></div>
<div class="enemyAttack"></div>
</div>
</body>
</html>