-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvita.html
79 lines (71 loc) · 2.55 KB
/
vita.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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css" />
<title>Vita</title>
</head>
<body>
<!-- Platzhalter für den Header -->
<div id="header-placeholder"></div>
<div class="vita">
<div>
<h1>Max Mustermann</h1>
<p>Email: [email protected] | Telefon: 0123 456789</p>
<p>Adresse: Musterstraße 1, 12345 Musterstadt</p>
</div>
<section class="section">
<h2>Berufserfahrung</h2>
<div class="job">
<h3>Webentwickler</h3>
<p><strong>Firma XYZ</strong> | 2020 – heute</p>
<ul>
<li>Entwicklung und Pflege von Webseiten und Webanwendungen</li>
<li>Optimierung von User Interfaces</li>
<li>Zusammenarbeit mit Design- und Marketingteams</li>
</ul>
</div>
<div class="job">
<h3>Junior Webentwickler</h3>
<p><strong>Firma ABC</strong> | 2018 – 2020</p>
<ul>
<li>Unterstützung bei der Entwicklung von Webseiten und Apps</li>
<li>Erstellung von HTML, CSS und JavaScript-Code</li>
<li>Fehlerbehebung und Performance-Optimierung</li>
</ul>
</div>
</section>
<section class="section">
<h2>Bildung</h2>
<div class="education">
<h3>Studium der Informatik</h3>
<p><strong>Universität Musterstadt</strong> | 2015 – 2018</p>
<ul>
<li>Bachelor of Science in Informatik</li>
<li>Schwerpunkte: Webentwicklung, Datenbanken</li>
</ul>
</div>
</section>
<section class="section">
<h2>Fähigkeiten</h2>
<ul>
<li>HTML, CSS, JavaScript</li>
<li>React, Node.js</li>
<li>Git, GitHub</li>
<li>Responsive Webdesign</li>
</ul>
</section>
<section class="section">
<h2>Sprachen</h2>
<ul>
<li>Deutsch: Muttersprache</li>
<li>Englisch: Fließend in Wort und Schrift</li>
</ul>
</section>
</div>
<!-- Platzhalter für den Footer -->
<div id="footer-placeholder"></div>
<!-- Externes JavaScript einbinden -->
<script src="script.js"></script>
</body>
</html>