-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (96 loc) · 3.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The CV of Volker Struck</title>
<meta name="description" content="CV of Volker Struck!" />
<meta name="author" content="Volker Struck" />
<link rel="stylesheet" href="https://unpkg.com/normalize.css@8.0.1/normalize.css" />
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Oswald&family=Roboto&display=swap" rel="stylesheet" />
</head>
<body>
<header class="header">
<div class="heading-group">
<h1 class="main-heading">Volker Struck</h1>
<p class="profession">Web Developer</p>
</div>
<nav class="navigation">
<a class="nav-link" href="#profile">Profile</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="profile">
<h2 class="article-heading">Profile</h2>
<p>
Hi, my Name is Volker and i love Technology.
</p>
</article>
<article id="experience">
<h2 class="article-heading">Experience</h2>
<section>
<header class="experience-header">
<h3 class="experience-heading">
Coding Bootcamps EU
</h3>
<p class="experience-subheading">June 2024 - Present</p>
</header>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus,
autem necessitatibus. Modi magnam consectetur reiciendis a id
aperiam cupiditate totam eveniet excepturi! Expedita deserunt
debitis inventore perferendis totam excepturi cupiditate!
</p>
</section>
<section>
<header class="experience-header">
<h3 class="experience-heading">
Web Developer
</h3>
<p class="experience-subheading">June 2024 - Present</p>
</header>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Laboriosam
obcaecati corrupti impedit perspiciatis quibusdam velit a, error
delectus officia vel incidunt, pariatur necessitatibus! Laborum
itaque officiis ab! Ullam, asperiores possimus.
</p>
</section>
</article>
<article id="skills">
<h2 class="article-heading">Skills</h2>
<section>
<h3>Soft Skills</h3>
<ul>
<li>XYXYX</li>
<li>Empathy</li>
<li>Creative Thinking</li>
</ul>
</section>
<section>
<h3>Technical Skills</h3>
<ul>
<li>HTML and CSS</li>
<li>JavaScript and TypeScript</li>
<li>Angular and Vue.js</li>
</ul>
</section>
</article>
<article id="contact">
<h2 class="article-heading">Contact</h2>
<ol>
<li>
E-Mail:
<a href="mailto:Struckvolker@web.de">Struckvolker@web.de</a>
</li>
</ol>
</article>
</main>
</body>
</html>