|
1 | | -<!DOCTYPE html> |
| 1 | +<!doctype html> |
2 | 2 | <html lang="en"> |
3 | | -<head> |
4 | | - <meta charset="utf-8"> |
5 | | - <title>Human Invaders</title> |
6 | | - <meta name="description" content=""> |
7 | | - <meta name="author" content="Murillo"> |
8 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
9 | | - <link rel="stylesheet" href="./src/library/pages/css/bootstrap.min.css"> |
10 | | - <link href="./src/library/pages/css/styles.css" type="text/css" rel="stylesheet" /> |
11 | | -</head> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <title>Human Invaders</title> |
| 6 | + <meta name="description" content="" /> |
| 7 | + <meta name="author" content="Murillo" /> |
| 8 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 9 | + <link rel="stylesheet" href="./src/library/pages/css/bootstrap.min.css" /> |
| 10 | + <link href="./src/library/pages/css/styles.css" type="text/css" rel="stylesheet" /> |
| 11 | + </head> |
12 | 12 |
|
13 | | -<body> |
| 13 | + <body> |
| 14 | + <!-- Start Page --> |
| 15 | + <div id="menuContainer"> |
| 16 | + <div class="background"></div> |
| 17 | + <div class="github-ribbon"> |
| 18 | + <a href="https://github.com/Murillo/Human-Invaders-Web-Game" target="_blank"> |
| 19 | + <img |
| 20 | + decoding="async" |
| 21 | + width="149" |
| 22 | + height="149" |
| 23 | + src="https://github.blog/wp-content/uploads/2008/12/forkme_left_white_ffffff.png" |
| 24 | + class="attachment-full size-full" |
| 25 | + alt="Fork me on GitHub" |
| 26 | + loading="lazy" |
| 27 | + /> |
| 28 | + </a> |
| 29 | + </div> |
| 30 | + <div class="container-wrapper"> |
| 31 | + <div class="container"> |
| 32 | + <h1>Human Invaders</h1> |
| 33 | + <ul> |
| 34 | + <li><a href="#">Start</a></li> |
| 35 | + <li><a href="#" class="open-modal">About</a></li> |
| 36 | + </ul> |
| 37 | + </div> |
| 38 | + </div> |
| 39 | + </div> |
14 | 40 |
|
15 | | - <!-- Start Page --> |
16 | | - <div id="menuContainer"> |
17 | | - <div class="background"></div> |
18 | | - <div class="github-ribbon"> |
19 | | - <a href="https://github.com/Murillo/Human-Invaders-Web-Game" target="_blank"> |
20 | | - <img decoding="async" width="149" height="149" src="https://github.blog/wp-content/uploads/2008/12/forkme_left_white_ffffff.png" class="attachment-full size-full" alt="Fork me on GitHub" loading="lazy"> |
21 | | - </a> |
22 | | - </div> |
23 | | - <div class="container-wrapper"> |
24 | | - <div class="container"> |
25 | | - <h1>Human Invaders</h1> |
26 | | - <ul> |
27 | | - <li><a href="#">Start</a></li> |
28 | | - <li><a href="#" class="open-modal">About</a></li> |
29 | | - </ul> |
30 | | - </div> |
31 | | - </div> |
32 | | - </div> |
| 41 | + <!-- Game Page --> |
| 42 | + <div id="gameContainer" class="hidden"> |
| 43 | + <div class="menu-game"> |
| 44 | + <!-- Name of the game --> |
| 45 | + <div class="game-name"> |
| 46 | + <a href="/">Human Invaders</a> |
| 47 | + </div> |
33 | 48 |
|
34 | | - <!-- Game Page --> |
35 | | - <div id="gameContainer" class="hidden" > |
36 | | - <div class="menu-game"> |
37 | | - <!-- Name of the game --> |
38 | | - <div class="game-name"> |
39 | | - <a href="/">Human Invaders</a> |
40 | | - </div> |
41 | | - |
42 | | - <!-- Game Menu --> |
43 | | - <ul class="hidden"> |
44 | | - <li><a href="#">Option 1</a></li> |
45 | | - </ul> |
46 | | - </div> |
| 49 | + <!-- Game Menu --> |
| 50 | + <ul class="hidden"> |
| 51 | + <li><a href="#">Option 1</a></li> |
| 52 | + </ul> |
| 53 | + </div> |
47 | 54 |
|
48 | | - <div id="main"> |
49 | | - <div id="menu"> |
50 | | - <div class="left-menu"></div> |
51 | | - <div class="center-menu"> |
52 | | - <div class="text">Life:</div> |
53 | | - <div class="result"> |
54 | | - <progress id="life" value="100" max="100"> |
55 | | - </div> |
56 | | - <div class="text">Shots:</div> |
57 | | - <div id="shots" class="result value"></div> |
58 | | - <div class="text">Score:</div> |
59 | | - <div id="score" class="result value">0</div> |
60 | | - </div> |
61 | | - <div class="right-menu"></div> |
62 | | - </div> |
63 | | - <div id="game"></div> |
| 55 | + <div id="main"> |
| 56 | + <div id="menu"> |
| 57 | + <div class="left-menu"></div> |
| 58 | + <div class="center-menu"> |
| 59 | + <div class="text">Life:</div> |
| 60 | + <div class="result"> |
| 61 | + <progress id="life" value="100" max="100"></progress> |
| 62 | + </div> |
| 63 | + <div class="text">Shots:</div> |
| 64 | + <div id="shots" class="result value"></div> |
| 65 | + <div class="text">Score:</div> |
| 66 | + <div id="score" class="result value">0</div> |
| 67 | + </div> |
| 68 | + <div class="right-menu"></div> |
| 69 | + </div> |
| 70 | + <div id="game"></div> |
| 71 | + </div> |
64 | 72 | </div> |
65 | | - </div> |
66 | | - |
67 | | - <div id="modal"> |
68 | | - <div class="modal-header"> |
69 | | - <div class="modal-title">The story</div> |
70 | | - <div class="modal-close"> |
71 | | - </div> |
72 | | - </div> |
73 | | - <div class="modal-body"> |
74 | | - <p>In the distant reaches of space, the planet of the Xerthians faces an existential threat from the relentless advance of human forces. In "Human Invaders," players take on the role of Xelar, one of the last remaining pilots of the Xerthian fleet. With his advanced spacecraft, the Phoenix, Xelar embarks on a perilous mission to repel the human incursion and defend his homeworld.</p> |
75 | 73 |
|
76 | | - <p>As players guide Xelar through intense space battles and dangerous missions, they must employ cunning tactics and quick reflexes to outmaneuver their human adversaries. From engaging in dogfights amidst asteroid fields to launching covert raids on enemy outposts, every decision is crucial in the fight for survival.</p> |
| 74 | + <div id="modal"> |
| 75 | + <div class="modal-header"> |
| 76 | + <div class="modal-title">The story</div> |
| 77 | + <div class="modal-close"></div> |
| 78 | + </div> |
| 79 | + <div class="modal-body"> |
| 80 | + <p> |
| 81 | + In the distant reaches of space, the planet of the Xerthians faces an |
| 82 | + existential threat from the relentless advance of human forces. In "Human |
| 83 | + Invaders," players take on the role of Xelar, one of the last remaining pilots |
| 84 | + of the Xerthian fleet. With his advanced spacecraft, the Phoenix, Xelar embarks |
| 85 | + on a perilous mission to repel the human incursion and defend his homeworld. |
| 86 | + </p> |
| 87 | + |
| 88 | + <p> |
| 89 | + As players guide Xelar through intense space battles and dangerous missions, |
| 90 | + they must employ cunning tactics and quick reflexes to outmaneuver their human |
| 91 | + adversaries. From engaging in dogfights amidst asteroid fields to launching |
| 92 | + covert raids on enemy outposts, every decision is crucial in the fight for |
| 93 | + survival. |
| 94 | + </p> |
77 | 95 |
|
78 | | - <p>As Xelar delves deeper into the conflict, he uncovers the true motivations behind the human invasion—a ruthless quest for domination and exploitation of the planet's resources. Fueled by greed and ambition, the human forces show no mercy in their pursuit of conquest.</p> |
| 96 | + <p> |
| 97 | + As Xelar delves deeper into the conflict, he uncovers the true motivations |
| 98 | + behind the human invasion—a ruthless quest for domination and exploitation of |
| 99 | + the planet's resources. Fueled by greed and ambition, the human forces show no |
| 100 | + mercy in their pursuit of conquest. |
| 101 | + </p> |
| 102 | + |
| 103 | + <p> |
| 104 | + In the climactic showdown aboard the human flagship, the Leviathan, Xelar |
| 105 | + confronts the enemy commander in a final, epic battle to decide the fate of |
| 106 | + their planet. With explosions lighting up the void of space, players must summon |
| 107 | + all their skills to emerge victorious and ensure the survival of the Xerthian |
| 108 | + species against the relentless onslaught of the human invaders. |
| 109 | + </p> |
| 110 | + </div> |
| 111 | + </div> |
79 | 112 |
|
80 | | - <p>In the climactic showdown aboard the human flagship, the Leviathan, Xelar confronts the enemy commander in a final, epic battle to decide the fate of their planet. With explosions lighting up the void of space, players must summon all their skills to emerge victorious and ensure the survival of the Xerthian species against the relentless onslaught of the human invaders.</p> |
81 | | - </div> |
82 | | - </div> |
83 | | - |
84 | | - <script type="module" src="./src/main.js"></script> |
85 | | - |
86 | | -</body> |
| 113 | + <script type="module" src="./src/main.js"></script> |
| 114 | + </body> |
87 | 115 | </html> |
0 commit comments