forked from OCS2-CodeFellows/space-invaders
-
Notifications
You must be signed in to change notification settings - Fork 1
/
credits.html
85 lines (80 loc) · 3.97 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/credit-style.css">
<title>Credits</title>
</head>
<body>
<header>
<h1>CREDITS</h1>
</header>
<main>
<section class="profile-card">
<h2>Robert Shepley</h2>
<img class="profile-picture" src="assets/credits/shepley-profile-picture.jpg" alt="" height="250" width="250">
<a class="icon github-logo" href="https://www.github.com/shepleysound">
<img src="assets/credits/github-icons8.png" alt="" height="48" width="48">
</a>
<a class="icon linkedin-logo" href="https://www.linkedin.com/in/robert-shepley/" class="linkedin-icon">
<img src="assets/credits/linkedin-icons8.png" alt="" height="48" width="48">
</a>
<ul class="profile-text">
<li>Audio Engineer for the US Army Bands with experience in recording and mixing for a wide variety of projects and a focus on technical problem-solving.</li>
<li>Currently working towards a career in full-stack software development, with the goal of eventually specializing as an Audio Programmer.</li>
</ul>
</section>
<section class="profile-card">
<h2>Alan Chelko</h2>
<img class="profile-picture" src="assets/credits/chelko-profile-picture.png" alt="" height="250" width="250">
<a class="icon github-logo" href="https://github.com/dtuskippy">
<img src="assets/credits/github-icons8.png" alt="" height="48" width="48">
</a>
<a class="icon linkedin-logo" href="https://www.linkedin.com/in/alanchelko/">
<img src="assets/credits/linkedin-icons8.png" alt="" height="48" width="48">
</a>
<ul class="profile-text">
<li>International MBA with over 20 years experience working in venture capital or on the management side in early stage environments</li>
<li>US Army Veteran</li>
</ul>
</section>
<section class="profile-card">
<h2>Daniel Shiraishi</h2>
<img class="profile-picture" src="assets/credits/DanielProfilePic.jpg" alt="" height="250" width="250">
<a class="icon github-logo" href="https://github.com/KaliFox20">
<img src="assets/credits/github-icons8.png" alt="" height="48" width="48">
</a>
<a class="icon linkedin-logo" href="https://www.linkedin.com/in/daniel-shiraishi-6b242b153/">
<img src="assets/credits/linkedin-icons8.png" alt="" height="48" width="48">
</a>
<ul class="profile-text">
<li>7 years of experience with Satellite Communications, IT Networking, and help desk operations</li>
<li>US Army Veteran</li>
</ul>
</section>
<section class="profile-card">
<h2>Timothee Odushina</h2>
<img class="profile-picture" src="assets/credits/timothee.jpg" alt="timothee" height="250" width="250">
<a class="icon github-logo" href="https://github.com/timothee2022">
<img src="assets/credits/github-icons8.png" alt="" height="48" width="48">
</a>
<a class="icon linkedin-logo" href="https://www.linkedin.com/in/hsp20tim/">
<img src="assets/credits/linkedin-icons8.png" alt="" height="48" width="48">
</a>
<ul class="profile-text">
<li>US Army Veteran with over 7 years of experience in logistics management, aircraft & ground maintenance supply, and safety officer.</li>
<li>A very open person, ready to learn new skills and excited for this new Tech adventure. </li>
</ul>
</section>
</main>
<footer>
<a class="button back-button" href="index.html">Return To Game</a>
</footer>
</body>
</html>