-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (54 loc) · 1.1 KB
/
index.html
File metadata and controls
62 lines (54 loc) · 1.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
body {
font-family: 'Helvetica Neue';
font-weight: 200;
font-size: 2em;
margin: 0;
padding: 0;
}
#content {
margin: 0 2em;
}
ul, li {
list-style: none;
margin: 0;
padding: 0;
}
ul {
margin-top: 1em;
}
a {
color: #A3C96C;
text-decoration: none;
}
a:hover, a:active, a:focus {
outline: none;
color: #77924F;
}
h1 {
margin: 1em 0 0.3em 0;
}
.domain {
color: #bbb;
}
.subdomain {
color: #000;
}
</style>
</head>
<body>
<div id="content">
<h1><span class="subdomain">data.</span><span class="domain">oertel.fr</span></h1>
<ul>
<li>
<a href="/reading/">reading room</a>
</li>
</ul>
</div>
</body>
</html>