-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (99 loc) · 3.94 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="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mein Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Mein Portfolio</h1>
<nav>
<ul>
<li><a href="#about">Über mich</a></li>
<li><a href="#experience">Berufserfahrung</a></li>
<li><a href="#projects">Projekte</a></li>
<li><a href="#skills">Qualifikationen</a></li>
<li><a href="#references">Referenzen</a></li>
<li><a href="#contact">Kontakt</a></li>
</ul>
</nav>
</header>
<section id="about">
<h2>Über mich</h2>
<p>Ich bin ein erfahrener Webentwickler mit einem Abschluss in Informatik und praktischer Erfahrung in der Technologiebranche.</p>
<p>Ich habe eine Leidenschaft für das Programmieren und das Lösen komplexer Probleme. In meiner Freizeit lerne ich gerne neue Technologien und arbeite an persönlichen Projekten.</p>
</section>
<section id="experience">
<h2>Berufserfahrung</h2>
<ul>
<li>
<h3>Softwareentwickler bei ABC GmbH</h3>
<p>Entwicklung und Wartung von Webanwendungen.</p>
<p><strong>Zeitraum:</strong> Januar 2023 - Juni 2023</p>
<p><strong>Aufgaben:</strong></p>
<ul>
<li>Entwicklung neuer Features für interne Tools</li>
<li>Behebung von Bugs und Optimierung der bestehenden Codebasis</li>
<li>Zusammenarbeit mit dem Design- und Produktteam</li>
</ul>
</li>
<li>
<h3>Praktikum bei XYZ AG</h3>
<p>Unterstützung des Entwicklungsteams bei der Implementierung neuer Funktionen.</p>
<p><strong>Zeitraum:</strong> Juli 2022 - Dezember 2022</p>
<p><strong>Aufgaben:</strong></p>
<ul>
<li>Erstellung von Prototypen für neue Webanwendungen</li>
<li>Testen und Debuggen von Software</li>
<li>Dokumentation der Entwicklungsprozesse</li>
</ul>
</li>
</ul>
</section>
<section id="projects">
<h2>Projekte</h2>
<div class="project">
<h3>Projekt 1: Portfolio-Website</h3>
<p>Eine persönliche Portfolio-Website, die meine Fähigkeiten und Projekte präsentiert.</p>
<a href="https://github.com/IhrGitHubBenutzername/portfolio">Mehr erfahren</a>
</div>
<div class="project">
<h3>Projekt 2: Todo-App</h3>
<p>Eine einfache Todo-App, die Benutzern hilft, ihre Aufgaben zu verwalten.</p>
<a href="https://github.com/IhrGitHubBenutzername/todo-app">Mehr erfahren</a>
</div>
</section>
<section id="skills">
<h2>Qualifikationen</h2>
<ul>
<li>HTML, CSS, JavaScript</li>
<li>React, Node.js</li>
<li>Python, Java</li>
<li>Git, GitHub</li>
<li>Agile Methodiken</li>
</ul>
</section>
<section id="references">
<h2>Referenzen</h2>
<p>Referenzen werden auf Anfrage bereitgestellt.</p>
</section>
<section id="contact">
<h2>Kontakt</h2>
<form id="contact-form">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Nachricht:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Senden</button>
</form>
</section>
<footer>
<p>© 2024 Mein Portfolio</p>
</footer>
<script src="script.js"></script>
</body>
</html>