-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredits.html
60 lines (57 loc) · 3.09 KB
/
credits.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
<!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">
<link rel="icon" href="assets/images/coffee.png" type="image/png">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="Retro Logic">
<title>Credits</title>
<!-- CSS LINK -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<a href="index.html"><h1>Office Invaders</h1></a>
<h2 id="game-subtitle">The game between the fat cats and the real world!</h2>
</header>
<main>
<div id="content">
<section>
<h3>credits</h3>
<ul>
<li><a href="https://github.com/no0tno0t" target="blank"> Daniel</a></li>
<li><a href="https://github.com/dnlbowers" target="blank"> David Bowers</a> - Story telling and HTML scuplter</li>
<li><a href="https://github.com/fdeboo" target="blank"> Frances DeBoo</a> - Co-coordinator and heavyweight coder</li>
<li><a href="https://github.com/Ivana505" target="blank"> Ivana Iles</a> - Wireframer, Image Scouter and CSS extraordinaire</li>
<li><a href="https://github.com/MikeAvgeros" target="blank"> Mike Avgeros</a> - Coordinator and Game Architect</li>
<li><a href="https://github.com/rreiter90" target="blank"> Richard Reiter</a> - Style Harvester and Muse</li>
<li><a href="https://github.com/thiagoluizfb" target="blank"> Thiago Bandeira</a> - JavaScript Genius and heavyweight coder</li>
<li><strong>Jim_community_CI</strong> - spy (not so secret agent and cheer leader)</li>
</ul>
<button id="return-btn"><a href="index.html"><i class="fas fa-arrow-left fa-lg"></i> Back</a></button>
</section>
</div>
<aside>
<hr>
<button><a href="storyline.html">Storyline</a></button>
<button><a href="how-to-play.html">How to play</a></button>
<button><a href="credits.html">Credits</a></button>
<button id="play-btn"><a href="game.html">Play!</a></button>
</aside>
</main>
<!--footer for social media links-->
<footer>
<div id="socials">
<a href="https://www.youtube.com" aria-label="Go to Facebook page" target="_blank" rel="noopener"><i class="fab fa-youtube-square"></i></a>
<a href="http://facebook.com" aria-label="Go to Facebook page" target="_blank" rel="noopener"><i class="fab fa-facebook"></i></a>
<a href="http://github.com" aria-label="Go to GitHub page" target="_blank" rel="noopener"><i class="fab fa-github"></i></a>
<a href="http://linkedin.com" aria-label="Go to LinkedIn page" target="_blank" rel="noopener"><i class="fab fa-linkedin"></i></a>
</div>
</footer>
<!-- font awesome script-->
<script src="https://kit.fontawesome.com/328aade986.js" crossorigin="anonymous"></script>
</body>
</html>