-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.05 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
background-color: #1E1E1E;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
text-align: center;
}
h1 {
color: lightgray;
}
.fa {
margin: 5px;
padding: 10px;
font-size: 20px;
width: 20px;
text-align: center;
text-decoration: none;
border-radius: 50%;
background: gray;
color: white;
}
.fa:hover {
opacity: 0.7;
}
</style>
<meta charset="utf-8">
<title>Michael Mercurio</title>
</head>
<body>
<h1>Michael Mercurio</h1>
<a href="https://twitter.com/michaelafcadio" class="fa fa-twitter"></a>
<a href="https://www.linkedin.com/in/whyisit/" class="fa fa-linkedin"></a>
</body>
</html>