-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (61 loc) · 1.41 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
<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;
background-color: black;
}
/* Background layer with an image */
.backdrop {
background: url("images/42.png") center;
background-size: 64px;
}
/* Dark foreground layer, with white text, set to "multiply" mix blend mode */
.text {
color: white;
background: black;
mix-blend-mode: multiply;
text-shadow: 0 0 9px white;
font-size: 32em;
font-weight: 800;
text-align: center;
}
#contact
{
font-size: 2em;
font-weight: 400;
}
a
{
color: gray;
text-decoration: none;
}
a:hover
{
color: white;
}
</style>
</style>
</head>
<body>
<!--
<div class="backdrop">
<p class="text">E.G.</p>
</div>
-->
<table width="100%" height="100%">
<tr>
<td align="center" valign="center" height="80%">
<div class="backdrop"> <p class="text">E.G.</p> </div>
</td>
</tr>
<tr>
<td align="center" valign="bottom">
<a href="mailto:[email protected]" id="contact">contact</a>
</td>
</tr>
</table>
</body>
</html>