-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Website</title>
</head>
<body>
<div class="mobileViewport">
<nav>
<a class="active" href="#">Über Mich</a>
<a href="lebenslauf.html">Lebenslauf</a>
<a href="kontakt.html">Kontakt</a>
</nav>
<section class="aboutme">
<img
src="/Images/Bildschirmfoto 2022-03-04 um 14.26.40.png"
alt="Foto von Dennis"
/>
<h1>Moin!</h1>
<p>
Mein Name ist Dennis Koch. Ich bin 30 Jahre alt und wohne in Leipzig.
Aktuell befinde ich mich in einem Boot-Camp zum Web-Developer welches
ich vorraussichtlich am 24.05.2022 abschließen werde.
</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Exercitationem praesentium dolores maiores molestiae obcaecati. Animi,
accusantium quos. Nobis optio nesciunt esse magnam officia hic, vel
recusandae ab, totam iure rem!
</p>
</section>
</div>
</body>
</html>