-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.86 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
<!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>I AM FERDINAND</title>
<link rel="stylesheet" href="./assets/style/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#" class="active">Moin</a></li>
<li><a href="./works">Works</a></li>
<li><a href="./skills">Skills</a></li>
<li><a href="./projects">Projects</a></li>
<li><a href="./about">About Me</a></li>
<li><a href="./contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<article class="hero">
<section class="title">
<h1>
Hi, I am<br/>Ferdinand!
</h1>
<h2>
– Web Developer by day, Web Developer by night –
</h2>
<section class="icons">
<a href="https://github.com/ferniemann" target="_blank" rel="noopener noreferrer">
<i class="fab fa-github"></i>
</a>
<a href="https://github.com/ferniemann" target="_blank" rel="noopener noreferrer">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/ferniemann" target="_blank" rel="noopener noreferrer">
<i class="fab fa-twitter"></i>
</a>
</section>
</section>
</article>
</main>
</body>
</html>