-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>Jorge L. Fatta</title>
<link rel="icon" type="image/png" href="favicon.png">
<style type="text/css">
html,
body {
font-family: 'Consolas', Menlo, Monaco, 'Lucida Console',
'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono',
'Courier New', monospace, serif;
background: #3c4954;
color: #FFF;
text-align: center;
}
a {
color: white;
display: inline-block;
margin: 21px 21px;
position: relative;
text-decoration: none;
}
a:after {
content: '';
height: 1px;
background: white;
position: absolute;
pointer-events: none;
bottom: -5px;
left: 0;
right: 0;
opacity: 0;
transform: scale(0, 1);
transition: all 300ms;
}
a:hover:after {
opacity: 1;
transform: scale(1, 1);
}
</style>
</head>
<body>
<h1>Hi,</h1>
<h2>I'm Jorge, software engineer.</h2>
<div id="links">
<a href="https://github.com/jfatta">github</a></br>
<a href="https://www.linkedin.com/in/jorgefatta/">linkedin</a></br>
<a href="https://bsky.app/profile/jorgefatta.dev">bluesky</a></br>
<a href="https://www.sanmatias.app/">sanmatias.app</a></br>
</div>
<div><a href="mailto:[email protected]">[email protected]</a></div>
</body>
</html>