-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (56 loc) · 2.54 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
<!DOCTYPE html>
<html>
<!-- Hiya! Thank you for reading this. I know the website is simple, but if I'm
honest this is just a "fancy" landing page for what it previously was a text
based Comic Sans link page. Someday I will update this website to have a
blog, somewhere to show my projects, etc., but not gonna be today. Also, I'm
aware of the strange bugs specially with the location of the footer, I just
do not have the solution.-->
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="HandheldFriendly" content="true"/>
<meta charset="utf-8">
<title>Markel Ferro</title>
<meta name="description" content="Markel Ferro Postigo is a student of Artificial Intelligence in Euskadi.">
<meta property="og:title" content="Markel Ferro">
<meta property="og:url" content="https://markel.dev/">
<meta property="og:description" content="Markel Ferro is a student of Artificial Intelligence."> <!-- Max 65 characters -->
<meta property="og:type" content="website">
<meta property="og:locale" content="en_US">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<main>
<section id="presentation">
<h1>Hiya!</h1>
<h2>I'm Markel, an Artificial Intelligence Student in Euskadi, Spain.</h2>
<a class="button contact_button" href="mailto:contact@markel.dev">Email Me!</a>
<p id="contact_text">You may also find me on:</p>
<div class="links">
<a class="button SM_button github" href="https://github.com/Markel">GitHub</a>
<a class="button SM_button linkedin" href="https://www.linkedin.com/in/markel-ferro/">LinkedIn</a>
</div>
</section>
<aside id="photo">
<div class="profile_picture_div"> <!-- The picture element isn't very nice with CSS -->
<picture class="profile_picture">
<source srcset="src/profile.avif" sizes="" type="image/avif">
<source srcset="src/profile.webp" type="image/webp">
<img src="src/profile.jpg" alt="Markel's profile picture">
</picture>
</div>
</aside>
</main>
<!-- <footer>
<p>© </p>
<p id="year"></p>
<p> Markel Studios</p>
<script>
var d = new Date();
var n = d.getFullYear();
document.getElementById("year").textContent = n;
</script>
</footer> -->
</body>
</html>