generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmore-info.html
104 lines (96 loc) · 5.75 KB
/
more-info.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Bootstrap's css files-->
<link rel="stylesheet" href="assets/bootstrap/bootstrap-grid.css">
<link rel="stylesheet" href="assets/bootstrap/bootstrap-reboot.css">
<link rel="stylesheet" href="assets/bootstrap/bootstrap-utilities.css">
<!--Bootswatch css file-->
<link rel="stylesheet" href="assets/bootstrap/bootstrap.css">
<!--our stylesheet-->
<link rel="stylesheet" href="assets/css/style.css">
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/x-icon">
<title>Quarantine!</title>
</head>
<body class="d-flex flex-column min-vh-100 background-body">
<header>
<!--Nav bar-->
<nav class="navbar navbar-expand-lg navbar-dark px-lg-5">
<!-- logo -->
<a class="navbar-brand" href="index.html"><img src="assets/img/logo.jpg" alt="Quarantine logo"></a>
<!--hamburger button-->
<button class="navbar-toggler me-3" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!--Nav Bar links-->
<div class="collapse navbar-collapse justify-content-end" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link btn btn-outline-light bg-dark border-neon" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link btn btn-outline-light bg-dark border-neon" href="how-to-play.html">How to play</a>
</li>
<li class="nav-item">
<a class="nav-link active btn btn-outline-light border-neon" aria-current="page" href="more-info.html">More info</a>
</li>
</ul>
</div>
</nav>
</header>
<div class="container container-fluid wrapper flex-grow-1 text-center">
<article id="more-info" class="container p-5 mt-5">
<!--
instructions for the game inspired by oryginal:
https://atariage.com/manual_html_page.php?SoftwareID=889
-->
<h1 class="mb-5 pixel-font">More Info</h1>
<h6 class="mb-5">
SMASH! POW! CRUNCH! This game was created as an inspiration of the name "breakout". We all hear the word Quarantine and Virus all the time. We want to break out of this!
</h6>
<h4 class="mb-2">Inspiration</h4>
<p class="mb-5">This game was created for Code Institute's Hackathon "Retro Gaming". The game was inspired by the Atari game Breakout. The description of the original game can be found <a href="https://atariage.com/manual_html_page.php?SoftwareID=889" target="_blank" aria-label="go to page Atari Age (open in a new window)">here</a>.</p>
<h4 class="mb-2">Our Team</h4>
<p class="mb-5">We are students at Code Institute. We decided that we want to provide some relief from the seriousness of Covid issues and have some fun. Please visit our team's <a href="https://hackathon.codeinstitute.net/teams/81/" target="_blank" aria-label="go to page hackaton teams page (open in a new window)">page</a>.</p>
</article>
</div>
<footer class="footer mt-5 py-3 ">
<div class="container">
<span class="contributor-header pixel-font">Contributors <i class="fab fa-github"></i></span>
<ul class="contributor-socials">
<li>
<a href="https://github.com/SiJiL82" target="_blank" aria-label="go to page GitHub SiJiL82 repository (open in a new window)" class="font-neon">Sven</a>
</li>
<li>
<a href="https://github.com/JoGorska" target="_blank" aria-label="go to page GitHub JoGorska repository (open in a new window)" class="font-neon">Joanna</a>
</li>
<li>
<a href="https://github.com/Jack112-create" target="_blank" aria-label="go to page GitHub Jack112-create repository (open in a new window)" class="font-neon">Jack</a>
</li>
<li>
<a href="https://github.com/kevinoc554" target="_blank" aria-label="go to page GitHub kevinoc554 repository (open in a new window)" class="font-neon">Kevin</a>
</li>
<li>
<a href="https://github.com/DarraghReid" target="_blank" aria-label="go to page GitHub DarraghReid repository (open in a new window)" class="font-neon">Darragh</a>
</li>
<li>
<a href="https://github.com/fernandagil/" target="_blank" aria-label="go to page GitHub fernandagil repository (open in a new window)" class="font-neon">Fernanda</a>
</li>
</ul>
</div>
</footer>
<!--Bootstrap JavaScript-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous">
</script>
<!-- Font-Awesome Link -->
<script src="https://kit.fontawesome.com/bad93f1642.js" crossorigin="anonymous"></script>
<!-- Phaser 3 CDN -->
<script src="//cdn.jsdelivr.net/npm/[email protected]/dist/phaser.min.js"></script>
<!-- Game logic js file -->
<!--<script src="assets/js/game.js"></script> -->
</body>
</html>