-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (76 loc) · 1.68 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
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Archivo+Narrow:400,700' rel='stylesheet' type='text/css'>
<style>
body {
font-family: 'Archivo Narrow', sans-serif;
color: #555;
background:#D4D7DC;
line-height:20px;
}
a {
text-decoration:none;
color:#555;
}
#box{
width:400px;
height:180px;
position:absolute;
left:50%;
top:50%;
margin:-100px 0 0 -200px;
border: 2px solid #777;
border-radius:15px;
padding: 15px;
background:#eee;
}
#header {
font-size:22px;
margin-bottom:0px;
color:#000;
text-align:center;
}
#subheader {
font-size:15px;
margin-bottom:10px;
color:#555;
text-align:center;
}
#names {
position:absolute;
left:0px;
top:70px;
width: 200px;
}
#projects {
position:absolute;
left:210px;
width:200px;
top:70px;
text-align:right;
border-left:1px solid #444;
height:120px;
}
</style>
</head>
<body>
<div id="box">
<div id="header">Kajakklubben</div>
<div id="subheader">(the imaginary giraffe club)</div>
<div id="names">
<b>Members</b><br>
<a href="mailto:[email protected]">Tim Garbos</a><br>
<a href="mailto:[email protected]">Martin Fasterholdt</a><br>
<a href="http://halfdanj.dk">Jonas Halfdan Jongejan</a><br>
<a href="mailto:[email protected]">K Ceiriog Shonibare-Lewis</a><br>
<a href="mailto:[email protected]">Kasper Videbæk</a>
</div>
<div id="projects">
<b>Projects</b><br>
<a href="farmors.html">Farmors Baghave</a><br>
<a href="http://xkcd.kajakklubben.org">Press And Move</a>
</div>
</div>
</body>
</html>