-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (69 loc) · 2.88 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="The official website for Aperta. Learn about us and our products/projects.">
<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">
APERTA
</p>
<p>
Welcome to the official Aperta website. Here you'll be able to find our contact information, products made by us, who we are, and more. We hope you enjoy yourself here.
</p>
<div id="news_main">
<p id="news_title">
NEWS FEED
</p>
<div id="news_post">
<p id="news_post_date">
16-07-2017
</p>
<p id="news_post_text">
Welcome to the new Aperta site! Nothing much has changed, but it's now on Github Pages.
</p>
</div>
<div id="news_post">
<p id="news_post_date">
31-03-2017
</p>
<p id="news_post_text">
Hello and welcome to Aperta's official website.
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>