-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
59 lines (57 loc) · 2.1 KB
/
about.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
<html>
<head>
<title>Shard - About Us</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<script type="text/javascript" src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script id="headerfooter-loader" src="scripts/insertHeaderFooter.js"></script>
<link rel="stylesheet" href="style.css">
<style>
.grid-container {
display: grid;
grid-template-rows: 150px 150px 150px;
grid-template-columns: auto auto;
grid-gap: 15px;
margin-top: 15px;
}
.grid-item {
background-color: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(0, 0, 0, 0.8);
padding: 20px;
font-size: 30px;
text-align: center;
}
</style>
</head>
<body>
<header></header>
<h2>About Us</h2>
<div id="repoLink" class="center" style="font-size: xx-large;">
Link to project:
<a href="https://github.com/uoy-jb2501/ENG1-Pirate-Game" target="_blank">ENG1-Pirate-Game</a>
</div>
<h2>Meet The Team</h2>
<div class="grid-container">
<div class="grid-item">
James Burnell<br /><br />
GitHub: <a href="https://github.com/uoy-jb2501" target="_blank">uoy-jb2501</a>
</div>
<div class="grid-item">
Jensen Bradshaw<br /><br />
GitHub: <a href="https://github.com/Jensen6842" target="_blank">Jensen6842</a>
</div>
<div class="grid-item">Ben Faulkner<br /><br />
GitHub: <a href="https://github.com/bf758" target="_blank">bf758</a>
</div>
<div class="grid-item">Adam Leuty<br /><br />
GitHub: <a href="https://github.com/AdamLeuty" target="_blank">AdamLeuty</a>
</div>
<div class="grid-item">Jiahao Shang<br /><br />
GitHub: <a href="https://github.com/jiahao23" target="_blank">jiahao23</a>
</div>
<div class="grid-item">Hector Woods<br /><br />
GitHub: <a href="https://github.com/HectorJVWoods" target="_blank">HectorJVWoods</a>
</div>
</div>
<footer></footer>
</body>
</html>