-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
executable file
·55 lines (55 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap" rel="stylesheet">
<script defer src="grid.js"></script>
<link rel="stylesheet" type="text/css" href="grid.css">
<style>
@font-face {
font-family: 'OCR A Std';
font-style: normal;
font-weight: normal;
src: local('OCR A Std'), url('OCRAStd.woff') format('woff');
}
body {
background-color: black;
font-family: 'Open Sans', Sans-Serif;
color: white;
}
a {
color: #8CF;
}
a:visited {
color: #8D5;
}
a:hover {
color: #8D5;
}
#wrapper {
margin: auto;
min-width: 1000px;
max-width: 1600px;
}
#header {
width: 100%;
min-width: 1000px;
padding: 25px 0px 20px 0px;
text-align: center;
font: 128px 'OCR A Std';
text-shadow: 5px 5px 10px #000, -5px 5px 10px #000, 5px -5px 10px #000, -5px -5px 10px #000;
background-image: url('computer-2930704_1280_half.jpg');
background-position: bottom;
background-size: cover;
}
</style>
<title>HackErOpUit</title>
</head>
<body>
<div id="wrapper">
<div id="header">HackErOpUit</div>
<p>Een evenement of uitje toevoegen ? Maak een pull-request via <A HREF="https://github.com/revspace/hackeropuit">github/revspace/hackeropuit</A></p>
<div id="tableWrap"></div>
</div>
</body>
</html>