-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (46 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="assets/css/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<video id="vid" width="300" height="150" autoplay="autoplay" loop="loop" muted="muted" ><source src="http://new.utaustinbootcamps.com/wp-content/uploads/sites/75/2018/08/UTAustin_coding.mp4"></video>
<div class="container" id="bigDiv">
<h1 id="choose1" style="color: red">Choose Your Character</h1>
<div class="container" id="pic1">
<img id="p1" src="assets/images/bob.JPG" width="140px" height="140px">
<p id="p1p">HP:</p>
</div>
<div class="container" id="pic2">
<img id="p2" src="assets/images/don fox.JPG" width="140px" height="140px">
<p id="p2p">HP:</p>
</div>
<div class="container" id="pic3">
<img id="p3" src="assets/images/sam.JPG" width="140px" height="140px">
<p id="p3p">HP:</p>
</div>
<div class="container" id="pic4">
<img id="p4" src="assets/images/walt.JPG" width="140px" height="140px">
<p id="p4p">HP:</p>
</div>
</div>
<div class="container" id="bigDiv2">
</div>
<div>
<button id="attack" type="button"> Fight!</button>
</div>
<div class="container" id="bigDiv3" style="color:red">
<h3>Enemies Avaiable to Attack</h3>
<h3>Fight Section</h3>
<h3>Defender</h3>
</div>
</div>
<script src="assets/javascript/game.js"></script>
</body>
</html>