-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (107 loc) · 3.66 KB
/
Copy pathindex.html
File metadata and controls
123 lines (107 loc) · 3.66 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Entwicklerprofil - Sebastian Kroll</title>
<style>
/* Grundlegende Stile */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
color: #333;
background-color: #f8f9fa;
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Banner-Container: Begrenzt die maximale Breite und Höhe */
.banner-container {
width: 100%;
max-width: 1000px; /* Sinnvolle maximale Breite, damit es nicht riesig wirkt */
margin: 2rem auto 0 auto; /* Zentriert und mit Abstand nach oben */
padding: 0 1rem;
box-sizing: border-box;
}
/* Bild-Stile: Sorgt dafür, dass das Bild skaliert, ohne beschnitten zu werden */
.banner-image {
width: 100%;
height: auto; /* Behält das Seitenverhältnis bei */
display: block;
border-radius: 12px; /* Optionale Abrundung für einen modernen Look */
box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Dezenter Schatten */
}
/* Inhalts-Stile */
.content {
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
flex-grow: 1;
text-align: center;
}
h1 {
color: #2c3e50;
margin-bottom: 1rem;
}
p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.highlight {
background-color: #e9ecef;
padding: 1rem;
border-radius: 8px;
border: 1px solid #dee2e6;
font-weight: 600;
display: inline-block;
}
/* Footer-Stile */
footer {
background-color: #343a40;
color: #fff;
padding: 2rem 0;
text-align: center;
width: 100%;
margin-top: 2rem;
}
footer a {
color: #adb5bd;
text-decoration: none;
margin: 0 10px;
font-size: 0.9rem;
}
footer a:hover {
color: #fff;
text-decoration: underline;
}
.copyright {
margin-bottom: 0.5rem;
}
</style>
</head>
<body>
<div class="banner-container">
<img src="/me_dev.jpg" alt="Sebastian Kroll - App Development Banner" class="banner-image">
</div>
<main class="content">
<h1>Willkommen auf meinem Entwicklerprofil</h1>
<p>Ich bin Sebastian Kroll, Ihr Partner für professionelle App-Entwicklung und innovative Spiele.</p>
<div class="highlight">
🚧 Aktuell entwickle ich eine neue App! Schau bald wieder vorbei, um sie hier zu sehen. 🚧
</div>
<p style="margin-top: 20px;">
Haben Sie eine Idee oder suchen Sie Unterstützung für Ihr nächstes Projekt? Auch Feedback zu meinen laufenden Apps ist jederzeit willkommen. Kontaktieren Sie mich gerne unter <a href="mailto:contact@silbenquiz.de">contact@silbenquiz.de</a>.
</p>
</main>
<footer>
<div class="copyright">© 2026 Sebastian Kroll. Alle Rechte vorbehalten.</div>
<div class="footer-links">
<a href="/terms.html">Nutzungsbedingungen</a>
<span style="color: #6c757d;">|</span>
<a href="/privacy-policy.html">Datenschutzerklärung</a>
</div>
</footer>
</body>
</html>