-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (44 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Doom Guy!</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<header class="title-bg">
<div class="container-fluid d-flex title-bar">
<img src="assets/transparent-logo-doom-4.png" alt="Doom logo" class="doom-logo">
</div>
</header>
<main id="main-bg" class="main-bg container-fluid">
<div class="row main-box d-flex">
<div class="col-12 d-flex main-box">
<div class="attack-buttons">
<button onclick="shootPistol()" class="btn btn-dark attack"> Pistol</button>
<button onclick="shootShotgun()" class="btn btn-dark attack">Super Shotgun</button>
<button onclick="shootBFG()" class="btn btn-dark attack">BFG 9000</button>
</div>
<div class="utility-buttons">
<button onclick="giveItem(1)" class="btn btn-dark utility">Armor</button>
<button onclick="giveItem(2)" class="btn btn-dark utility">Grenade</button>
<button onclick="giveItem(3)" class="btn btn-dark utility">Rage</button>
</div>
<span class="content">Health: <span class="content" id="health"></span></span>
</div>
</div>
<div class="enemy row d-flex">
<div id="cyberdemon" class="col-12 enemy-box d-flex">
<img src="http://i257.photobucket.com/albums/hh220/foxkiller017/cybr1g.gif" alt="">
</div>
</div>
</main>
<footer class="container-fluid d-flex">
</footer>
<script src="app/main.js"></script>
</body>
</html>