-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
59 lines (52 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>APERTA</title>
<link rel="stylesheet" type="text/css" href="/css/main.css">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?">
<script type="text/javascript">
function goToLink(link) {
if (link !== undefined) {
window.location.href = link;
}
}
</script>
</head>
<body>
<div id="blue_back" >
<div id="green_back" >
<div id="logo_image_left"></div>
<div id="logo_image_right"></div>
<div id="gray_back" >
<div id="buttons">
<div class="unselectable" id="button" onclick="goToLink('/')">
Home
</div>
<div class="unselectable" id="button" onclick="goToLink('/products')">
Products
</div>
<div class="unselectable" id="button" onclick="goToLink('/about')">
About
</div>
<div class="unselectable" id="button" onclick="goToLink('/contact')">
Contact
</div>
</div>
<p id="header_text">
ABOUT
</p>
<p>Aperta is a team currently comprised of <b>3</b> people:</p>
<br>
<p>Colinator27 (Programmer)</p>
<p>MadCreativity (Programmer, concept artist)</p>
<!--p>Sanes (Programmer, musician, artist)</p-->
<p>ShadowTheClood (Programmer)</p>
<br>
<p>We're a software development team that also makes games on the side.</p>
</div>
</div>
</div>
</body>
</html>