-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (101 loc) · 3.28 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Website of Franz Wutke</title>
<link rel="stylesheet" href="https://unpkg.com/normalize.css@8.0.1/normalize.css"/>
<link rel="stylesheet" href="style.css">
<meta name="description" contend="My CV"/>
<meta name="autor" contend="franz">
</head>
<body>
<header class="header">
<div class="header-group">
<h1 class="main-heading">Franz Wutke</h1>
<i class="mission">The way to structur HTML and CSS with Accessibility</i>
</div>
<nav class="navigation">
<a class="nav-link" href="#profil">Profil</a>
<a class="nav-link" href="#experience">Experience</a>
<a class="nav-link" href="#skills">Skills</a>
<a class="nav-link" href="#contact">Contact</a>
</nav>
<aside class="hire-me">Hire Me</aside>
</header>
<main class="main">
<article id="Profil">
<h2 class="article-heading">Profil</h2>
<p>Hello, my name is Franz Wutke, I am 33 years old and I was born in Dresden.
</p>
I am motivated to learn new knowledge about HTML, CSS and JavaScript. <br>
So I'm looking forward to the next 3 months
which I will spend coding in the <a class=“nav-link“ href="https://coding-bootcamps.eu">Coding-Bootcamp</a> . <br>
</p>
</article>
<article id="experience">
<h2 class="article-heading">Experience</h2>
<section>
<header>
<h3 class="experience-heading">Coding Bootcamps EU - Studend</h3>
<p class="experience-subheading">January 2024 - Present</p>
</header>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Repellat nemo aliquid debitis quas minima odit architecto
temporibus quasi eos dolorem?
</p>
</section>
<section>
<header>
<h3 class="experience-heading">Deadler - Manufacturing of tarpaulin materials and films</h3>
<p class="experience-subheading">Maerz 2022 - November 2023</p>
</header>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Provident facilis numquam reiciendis deleniti esse explicabo.</p>
</section>
<section>
<header>
<h3 class="experience-heading">Construction and finishing trades in the craft sector</h3>
<p class="experience-subheading">2008 - 2022</p>
</header>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing
elit. Harum impedit eaque rem reiciendis quae dolore
praesentium repudiandae velit libero ipsum?</p>
</section>
</article>
<article id="skills">
<h2 class="article-heading">Skills</h2>
<section>
<h3>soft skills</h3>
<ul>
<li>Active listening</li>
<li>Empathy</li>
<li>Critical thinking</li>
</ul>
</section>
<section>
<h3>technical skills</h3>
<ul>
<li>Financal Management</li>
<li>Web development</li>
<li>Cooking</li>
</ul>
</section>
</article>
<article id="contact">
<h2 class="article-heading">Contact</h2>
<ol>
<li>Phone: 01786549542</li>
<li>E-mail:<a href="mailto:wutke1990@gmail.com">wutke1990@gmail.com</a></li>
</ol>
</article>
</main>
<footer class="footer">
<p class="footer-text">
Did you like my CV?
<a class="footer-link" href="mailto:wutke1990@gmail.com"
>Contact me</a>
</p>
</footer>
</body>
</html>