-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_original.html
75 lines (64 loc) · 1.13 KB
/
index_original.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
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,800;1,400&display=swap" rel="stylesheet">
<style>
body
{
font-family: 'Work Sans', sans-serif;
color: white;
background-color: black;
}
#titles
{
line-height: 0.7;
}
#title1
{
font-size: 4em;
font-weight: 400;
font-style: italic;
}
#title2
{
font-size: 32em;
font-weight: 800;
}
#subtitle
{
font-size: 2em;
color: gray;
}
#contact
{
font-size: 2em;
font-weight: 400;
}
a
{
color: gray;
text-decoration: none;
}
a:hover
{
color: white;
}
</style>
</head>
<body>
<table width="100%" height="100%">
<tr>
<td align="center" valign="center" height="80%">
<div id="titles">
<span id="title1">E.G.</span></br>
<span id="title2">42</span></br>
</div>
</td>
</tr>
<tr>
<td align="center" valign="bottom">
<a href="mailto:[email protected]" id="contact">contact</a>
</td>
</tr>
</table>
</body>
</html>