-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
85 lines (71 loc) · 2.53 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="My Portfolio to showcase the programming skils I have so far">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="Louis Peter">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./fontawesome-free-6.2.1-web/css/all.css">
<link rel="stylesheet" href="./home.css">
<link rel="icon" type="image/x-icon" href="./images/IMG_8327.JPG">
<title>Louis Peter Portfolio</title>
</head>
<body>
<!-- Header -->
<header>
<div>
<a href="./aboutme.html">
<img src="./images/IMG_8327.JPG" alt="Logo">
</a>
</div>
<nav>
<ul>
<li><a href="./aboutme.html">About Me</a></li>
<li><a href="./myprojects.html">My Projects</a></li>
</ul>
</nav>
</header>
<!-- Main Content -->
<main>
<!-- About me -->
<article>
<a href="./aboutme.html">
<h1>Louis Peter</h1>
</a>
<p class="caption">Aspiring Full Stack</p>
<h2 class="line anim-typewriter">{Web} #Developer#</h2>
</article>
<!-- Info Icons -->
<div class="icons">
<a href="https://en.wikipedia.org/wiki/HTML" target="_blank" class="icon">
<i class="fa-brands fa-html5"></i>
<p>HTML</p>
</a>
<a href="https://en.wikipedia.org/wiki/CSS" target="_blank" class="icon">
<i class="fa-brands fa-css3-alt"></i>
<p>CSS</p>
</a>
<a href="https://en.wikipedia.org/wiki/JavaScript" target="_blank" class="icon">
<i class="fa-brands fa-js-square"></i>
<p>JavaS</p>
</a>
</div>
<div class="cookie-banner" id="cookieBanner">
<p>This website uses cookies to ensure you get the best experience on my website.</p>
<button id="acceptButton">Accept</button>
</div>
</main>
<!-- Footer -->
<footer>
<div>
<p>© 2023 Louis Peter</p> <a href="./impressum.html">Impressum</a>
</div>
<div>
<a href="https://github.com/louisclarencepeter" target="_blank"><i class="fa-brands fa-github"></i></a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>