-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (61 loc) · 2.49 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RPG Battle</title>
<!-- Added link to the jQuery Library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Added a link to Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<!-- Added a link to our external stylesheet-->
<link rel="stylesheet" href="assets/css/style.css">
<!--added a link to google fonts-->
<link href="https://fonts.googleapis.com/css?family=Averia+Serif+Libre:400,700|Kumar+One" rel="stylesheet">
</head>
<body>
<header class="font-effect-outline">
<h1> RPG Battle </h1>
</header>
<div class="container">
<div class="sidebar" id="left"><img src="assets/images/dice.png" /></div>
<div class="gameContent">
<p class="message" id="charMessage">
You must choose.
</p>
<div class="gamefield" id="charset">
<div class="charWrap" id="1w"><img src="assets/images/dungeonWorld.png" class="character" id="dw" />
<span class="hp" id="hp1">hp: 289</span>
</div>
<div class="charWrap" id="2w"><img src="assets/images/paranoia.png" class="character" id="paranoia" />
<span class="hp" id="hp2">hp: 520</span>
</div>
<div class="charWrap" id="3w"><img src="assets/images/Fate.png" class="character" id="fate" />
<span class="hp" id="hp3">hp: 333</span>
</div>
<div class="charWrap" id="4w"><img src="assets/images/dungeonsAndDragons.png" class="character"
id="dnd" />
<span class="hp" id="hp4">hp: 751</span>
</div>
</div>
<div class="gamefield" id="battlefield">
<span class="fighter" id="player">
<p>Player</p>
</span>
<span class="fighter" id="opponent">
<p>Opponent</p>
</span>
</div>
<p class="message" id="gameMessage"></p>
</div>
<div class="sidebar" id="right">
<img src="assets/images/dice.png" />
</div>
</div>
<footer>
<p>
copyright ©
</p>
</footer>
<script src="assets/js/game.js"></script>
</body>
</html>