-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 919 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>deverts.co</title>
<style>
body {
font-family: 'Times New Roman', serif;
background-color: rgb(13, 18, 32);
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 50vh;
font-size: 1.2em;
margin: 0;
}
.link-container {
text-align: center;
}
a {
text-decoration: none;
color: white;
margin: 0 15px;
}
a:hover {
color: darkslategray;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="link-container">
<a href="https://github.com/deverts" target="_blank">github</a>
<a href="https://twitter.com/deverts_" target="_blank">twitter</a>
</div>
</body>
</html>