-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (79 loc) · 2.23 KB
/
index.html
File metadata and controls
90 lines (79 loc) · 2.23 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<!--
Identity by HTML5 UP
html5up.net | @ajlkn
-->
<html>
<head>
<title>Paula Sempere</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript>
<style>
body:after {
display: none;
}
#main {
transform: none !important;
opacity: 1 !important;
}
</style>
</noscript>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css"
integrity="sha512-5Hs3dF2AEPkpNAR7UiOHba+lRSJNeM2ECkwxUIxC1Q/FLycGTbNapWXB4tP889k5T5Ju8fs4b1P5z/iB4nMfSQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link href="favicon.ico" rel="icon" type="image/x-icon" />
</head>
<body class="is-loading">
<div id="wrapper">
<section id="main">
<header>
<span class="avatar">
<img src="images/virtual-avatar.png" alt="Paula Sempere" />
</span>
<h1>Paula Sempere</h1>
<p>Software Engineer, Cybersecurity Consultant</p>
</header>
<footer>
<ul class="icons">
<li>
<a href="https://github.com/semperedev" class="fas fa-github">
Github
</a>
</li>
<li>
<a href="https://wiki.sempere.dev/" class="fas fa-wikipedia-w">
WikiCueva
</a>
</li>
<li>
<a
href="https://cartas.sempere.dev/"
class="far fa-face-laugh-squint"
>
Cartas
</a>
</li>
</ul>
</footer>
</section>
<footer id="footer">
<ul class="copyright">
<li>
Design: <a href="http://html5up.net" target="_blank">HTML5 UP</a>
</li>
</ul>
</footer>
</div>
<script>
window.addEventListener("load", () =>
document.body.classList.remove("is-loading")
);
</script>
</body>
</html>