-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
71 lines (62 loc) · 2.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DC vs Marvel Gif War</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js"></script>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header> <img src="assets/images/dclogo.png" alt="dclogo" height="100" width="100">
Marvel vs DC Ultimate Gif Battle <img src="assets/images/Marvel_Logo.jpg" alt="marvallogo" width="150" height="auto"></header>
<div class = "main-container">
<form id="superHero-form">
<label for="superHero-input"></label>
<input type="text" id="superHero-input"><br>
<!-- Button triggers new superHero to be added -->
<input id="add-superHero" type="submit" class='btn btn-warning btn-lg' value="Add a Super Hero">
</form>
<div class = "row" id = "new-buttons"> </div>
<div class = "row" id = "battle-ground">
<button data-character="Green Arrow Justice League" class='btn btn-success btn-lg'>
The Green Arrow
</button>
<button data-character="Wonder Woman Justice League" class='btn btn-info btn-lg'>
Wonder Woman
</button>
<button data-character="Flash Barry Allen" class='btn btn-danger btn-lg'>
The Flash
</button>
<button data-character="Superman" class='btn btn-primary btn-lg'>
Superman
</button>
<button data-character="Batman" class='btn btn-warning btn-lg'>
Batman
</button>
<button data-character="Iron Man Avengers" class='btn btn-danger btn-lg'>
Iron Man
</button>
<button data-character="Captain America Avengers" class='btn btn-primary btn-lg'>
Captain America
</button>
<button data-character="The Black Widow" class='btn btn-warning btn-lg'>
Black Widow
</button>
<button data-character="Thor Avengers" class='btn btn-info btn-lg'>
Thor
</button>
<button data-character="Loki Tom Hiddleson" class='btn btn-success btn-lg'>
Loki
</button>
</div>
<div class = "row" id="dc-marvel">
</div>
</div>
<script src="assets/javascript/tastic.js"></script>
</body>
</html>