-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (62 loc) · 5.08 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
<!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">
<link href="https://fonts.googleapis.com/css?family=Gugi|Marvel" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<title>Avengers Game</title>
<script src="js-Folder/GameManager.js"></script>
<script src="js-Folder/Player.js"></script>
<script src="js-Folder/Enemy.js"></script>
<script src = "js-Folder/initalizeAttack.js"> </script>
</head>
<body>
<div class="header">
<p>Greatest Avenger Game Ever!</p>
<h2>AVENGERS</h2>
</div>
<div class="interface">
<a href="#" onclick="GameManager.setGameStart('IronMan')">
<img src="img/avatar-avengers/iron-man-endgame-625x352.png" alt="Iron Man" id="IronMan">
<div>
<h3>IRON MAN</h3>
<p>
A wealthy American business magnate, playboy, and ingenious scientist, Anthony Edward "Tony" Stark suffers a severe chest injury during a kidnapping. When his captors attempt to force him to build a weapon of mass destruction, he instead creates a powered suit of armor to save his life and escape captivity. Later, Stark develops his suit, adding weapons and other technological devices he designed through his company, Stark Industries. He uses the suit and successive versions to protect the world as Iron Man. Although at first concealing his true identity, Stark eventually declared that he was, in fact, Iron Man in a public announcement.
</p>
</div>
</a>
<a href="#" onclick="GameManager.setGameStart('CaptainAmerica')">
<img src="img/avatar-avengers/CapAmerica-EndgameProfile.jpg" alt="Captain America" id="CaptainAmerica">
<div>
<h3>CAPTAIN AMERICA</h3>
<p>
The character wears a costume bearing an American flag motif, and he utilizes a nearly indestructible shield which he throws as a projectile. Captain America is the alter ego of Steve Rogers, a frail young man enhanced to the peak of human perfection by an experimental serum to aid the United States government's efforts in World War II. Near the end of the war, he was trapped in ice and survived in suspended animation until he was revived in the present day. Although Captain America often struggles to maintain his ideals as a man out of his time with its modern realities, he remains a highly respected figure in his community which includes becoming the long-time leader of the Avengers. </p>
</p>
</div>
</a>
<a href="#" onclick="GameManager.setGameStart('Thor')">
<img src="img/avatar-avengers/Thor_AIW_Profile.jpg" alt="Thor" id="Thor">
<div>
<h3>THOR</h3>
<p>
Thor is a prominently mentioned god throughout the recorded history of the Germanic peoples, from the Roman occupation of regions of Germania, to the tribal expansions of the Migration Period, to his high popularity during the Viking Age, when, in the face of the process of the Christianization of Scandinavia, emblems of his hammer, Mjölnir, were worn and Norse pagan personal names containing the name of the god bear witness to his popularity. </p>
</p>
</div>
</a>
<a href="#" onclick="GameManager.setGameStart('CaptainMarvel')">
<img src="img/avatar-avengers/CapMarvel-EndgameProfile.jpg" alt="Captain Marvel" id="CaptainMarvel">
<div>
<h3>CAPTAIN MARVEL</h3>
<p>
Carol Susan Jane Danvers is a fictional superhero appearing in American comic books published by Marvel Comics. Created by writer Roy Thomas and artist Gene Colan, Danvers first appeared as an officer in the United States Air Force and a colleague of the Kree superhero Mar-Vell in Marvel Super-Heroes #13 (March 1968). Danvers later became the first incarnation of Ms. Marvel in Ms. Marvel #1 (cover-dated January 1977) after her DNA was fused with Mar-Vell's during an explosion, giving her superhuman powers. Debuting in the Silver Age of comics, the character was featured in a self-titled series in the late 1970s before becoming associated with the superhero teams the Avengers and the X-Men. The character has also been known as Binary, Warbird and Captain Marvel at various points in her history. Danvers has been labeled "Marvel's biggest female hero"[2] and "quite possibly Marvel's mightiest Avenger".[3][4] In 2012, Danvers' incarnation of Ms Marvel was the highest ranked female character (at #11) on IGN's list of the "Top 50 Avengers".
</p>
</div>
</a>
</div>
<div class="actions"></div>
<div class="arena"></div>
<div class="enemy"></div>
</body>
</html>