-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
31 lines (31 loc) · 1.36 KB
/
index.php
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Portfolio</title>
<link rel="stylesheet" type="text/css" href="Css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merriweather&display=swap" rel="stylesheet">
</head>
<body>
<?php include "Inc/logo.inc.html" ?>
<header class="MainHeader">
<nav>
<a href="aboutme.php" class="NavLinks">About me</a>
<a href="projects.php" class="NavLinks">Projects</a>
<a href="contact.php" class="NavLinks">Contact</a>
</nav>
</header>
<main>
<p class="Name FirstName">Zachary</p>
<p class="Name SecondName">Vanvlasselaer</p>
<p class="Who">I'm an <span class="Title"><span class="HighlightSecondary">App </span><span class="HighlightPrimary">&</span><span class="HighlightSecondary"> Web Developer</span></span><br>
from the region of Liège in Belgium, currently studying at <a class="Link" href="https://helmo.be">HELMO.</a></p>
<p class="Who">
I build robust and fast applications with a cool and simple UI design.<br>
I like to believe that my strength lies in my always improving code.
</p>
</main>
</body>
</html>