-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
86 lines (79 loc) · 2.89 KB
/
aboutme.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
<!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" type="text/css">
<link rel="stylesheet" href="./aboutme.css">
<link rel="icon" type="image/x-icon" href="./images/IMG_8327.JPG">
<title>About Me</title>
</head>
<body>
<!-- Header -->
<header>
<div>
<a href="./home.html">
<img src="./images/IMG_8327.JPG" alt="Logo" width="30" height="30">
</a>
</div>
<nav>
<ul>
<li><a href="./myprojects.html">My Projects</a></li>
<li><a href="./home.html">Back Home</a></li>
</ul>
</nav>
</header>
<!-- Main Content -->
<main>
<!-- My Picture and Small Info -->
<section>
<div class="info bounce-top one">
<img src="./images/IMG_8327.JPG" alt="my picture">
<h2>Louis Peter</h2>
<p>Living in Frankfrurt am Main with passion of Technolgy and Web Development</p>
<a href="https://github.com/louisclarencepeter" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/in/louisclarencepeter/" target="_blank"><i
class="fa-brands fa-linkedin"></i></a>
</div>
</section>
<!-- School-->
<section>
<div class="info bounce-top two">
<img src="./images/DCI_COLORS_June24_logo_wordmark_blue.svg" alt="my school">
<h2>Education</h2>
<p>2022 - Present</p>
<p>Full Stack Web Development</p>
<p>Digital Career Institute</p>
</div>
</section>
<!-- My Progress -->
<section>
<div class="info bounce-top three">
<img src="./images/image01.jpg" alt="my Progress">
<h2>My Skills</h2>
<p>HTML</p>
<p>CSS</p>
<p>JavaScript</p>
<p>Git</p>
<p>React</p>
<p>Node.js</p>
<p>Express.js</p>
<p>MongoDB</p>
</div>
</section>
</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" aria-label="my git hub profile"><i class="fa-brands fa-github"></i></a>
</div>
</footer>
</body>
</html>