-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
55 lines (48 loc) · 1.77 KB
/
contact.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
<!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">
CONTACT
</p>
<p>
Alas, this page is empty.
</p>
<p>Maybe, one day, it will have content.</p>
</div>
</div>
</div>
</body>
</html>