-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (67 loc) · 1.48 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Jesús García Crespo</title>
<style type="text/css">
body {
margin: 40px;
color: #333;
}
a,
a:visited {
color: black;
}
h1 {
font-size: 1.4em;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
li {
margin: 5px;
}
footer {
font-size: 0.8em;
}
a,
a:visited {
color: #0077cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
span + span::before {
content: "|";
margin: 0 0.25em;
color: #666;
}
</style>
</head>
<body>
<h1>Jesús García Crespo's site</h1>
<ul>
<li>
<strong>Email:</strong>
<a href="mailto:[email protected]" aria-label="Send an email to [email protected]">[email protected]</a>
</li>
<li>
<span>
<strong>GitHub:</strong>
<a href="https://github.com/sevein" aria-label="Visit GitHub profile">@sevein</a>
</span>
<span>
<strong>Twitter:</strong>
<a href="https://twitter.com/sevein" aria-label="Visit Twitter profile">@sevein</a>
</span>
<span>
<strong>Bluesky:</strong>
<a href="https://bsky.app/profile/sevein.com" aria-label="Visit Bluesky profile">sevein.com</a>
</span>
</li>
</ul>
</body>
</html>