-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·123 lines (91 loc) · 3.82 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Matias's Portfolio</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="mediaqueries.css" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- Cloudflare Web Analytics -->
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "46978a781df5462a9863bbe435e4d391"}'></script>
<!-- End Cloudflare Web Analytics -->
<!-- Título que aparecerá en la vista previa -->
<meta property="og:title" content="Matias's Portfolio" />
<!-- Descripción que aparecerá en la vista previa -->
<meta property="og:description" content="Welcome to Matias David Schwerdt's portfolio." />
<!-- URL de la imagen que aparecerá en la vista previa -->
<meta property="og:image" content="https://portfolio.chewer.net/assets/screenshot-4.png" />
<!-- URL de tu sitio web -->
<meta property="og:url" content="https://portfolio.chewer.net" />
<!-- Tipo de contenido -->
<meta property="og:type" content="website" />
<!-- Título de la página (opcional, si no quieres cambiar el título del navegador) -->
<meta name="title" content="Matias David Schwerdt | Software Engineering Portfolio" />
</head>
<body>
<div class="content">
<section id="profile">
<div class="section__pic-container">
<img src="./assets/profile-pic-circle.png?v=timestamp" alt="Matias profile picture" />
</div>
<div class="section__text">
<p class="section__text__p1">Hello! I'm</p>
<h1 class="title">Matias David Schwerdt</h1>
<p class="section__text__p2">Software Engineering Student</p>
<!--
<div class="btn-container">
<button class="btn btn-color" onclick="window.open('./assets/resume-example.pdf')">
Download CV
</button>
</div>
-->
<div id="socials-container">
<a href="https://www.linkedin.com/in/matiasschwerdt/" target="_blank">
<img src="./assets/icons/linkedin.png" alt="My LinkedIn profile" class="icon" />
</a>
<a href="https://github.com/matichewer" target="_blank">
<img src="./assets/icons/github.png" alt="My Github profile" class="icon" />
</a>
<a href="mailto:schwerdt.matias@gmail.com">
<img src="./assets/icons/email-2.png" alt="Email icon" class="icon" />
</a>
<p class="email"> schwerdt.matias@gmail.com</p>
</div>
</div>
</section>
<div id="social_preview"></div>
<script>
document.getElementById('social_preview').innerHTML = social_preview.small({
title: 'PDF Password Remover',
description: 'Una herramienta para remover contraseñas de archivos PDF.',
site: 'GitHub',
url: 'https://github.com/matichewer/PDF-Password-Remover',
img: 'assets/pdf-password-remover.png',
});
</script>
<div id="scroll-arrow-container">
<div class="arrow" onclick="scrollToProjects()">
<span></span>
<span></span>
</div>
</div>
<section id="projects">
<h1 class="title">Projects</h1>
<div id="projects-container">
<!-- Los proyectos se cargarán aquí dinámicamente -->
</div>
</section>
<footer>
Build with ❤ by Matias David Schwerdt
</footer>
</div>
<script src="script.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>