-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsurvival.html
More file actions
58 lines (57 loc) · 2.42 KB
/
survival.html
File metadata and controls
58 lines (57 loc) · 2.42 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<link href="styles.css" rel="stylesheet">
<title>Labyrinth Games</title>
<script>
document.addEventListener('DOMContentLoaded', function(){
document.querySelector('#submit').addEventListener('click', function() {
alert("Thank you")
});
});
</script>
</head>
<body>
<header>
<h1>Welcome to Labyrinth Games</h1>
<nav>
<ul>
<li id="s"><a href="survival.html" class="active-menu">Survival</a></li>
<li id="p"><a href="penguin_plane.html">Penguin Plane</a></li>
<li id="b"><a href="band_ball.html">Band Ball</a></li>
<li id="i"><a href="index.html">Main Page</a></li>
</ul>
</nav>
</header>
<main>
<h2>Survival</h2>
<div>
<a href="survival.html"><img alt="A screenshot of Survival" class="img-thumbnail" src="https://img.itch.zone/aW1nLzEwMjMzMzEyLmpwZw==/original/9dfZ9l.jpg" height="400"></a>
</div>
<p>A game about intercepting missiles and dodging radiation</p>
<table class="table table-striped">
<tr>
<th>Name</th>
<th>Cost</th>
<th>OS</th>
<th>Where to Download</th>
</tr>
<tr>
<td>Survival</td>
<td>Completely Free</td>
<td>Only playable on PC</td>
<td>Itch.io</td>
</tr>
</table>
<input placeholder="Leave a review">
<button id="submit">Post</button>
</main>
<footer>
<p>Copyright © Labyrinth Games</p>
</footer>
</body>
</html>