-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (103 loc) · 2.98 KB
/
index.html
File metadata and controls
112 lines (103 loc) · 2.98 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Heidron | IT-Services</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #0f172a;
color: #f1f5f9;
}
header {
text-align: center;
padding: 80px 20px;
background: linear-gradient(135deg,#1e293b,#0f172a);
}
h1 { font-size: 42px; margin-bottom: 10px; }
h2 { color: #38bdf8; }
section { padding: 60px 20px; max-width: 1000px; margin: auto; }
.btn {
display: inline-block;
padding: 12px 24px;
margin: 10px;
background: #38bdf8;
color: #0f172a;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
}
.btn-secondary {
background: transparent;
border: 2px solid #38bdf8;
color: #38bdf8;
}
.card-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.card {
flex: 1 1 280px;
background: #1e293b;
padding: 20px;
border-radius: 8px;
}
footer {
background: #020617;
padding: 40px 20px;
font-size: 14px;
}
a { color: #38bdf8; text-decoration: none; }
</style>
</head>
<body>
<header>
<h1>Heidron – IT Services</h1>
<p>IT-Services • Support • Infrastruktur</p>
<p><strong>Website im Aufbau</strong></p>
<a href="mailto:info@heidron.de" class="btn">Kontakt aufnehmen</a>
<a href="#leistungen" class="btn btn-secondary">Leistungen ansehen</a>
</header>
<section id="leistungen">
<h2>Leistungsbereiche</h2>
<div class="card-container">
<div class="card">
<h3>IT-Support</h3>
<p>Remote- und Vor-Ort-Unterstützung für kleine Unternehmen und Selbstständige.</p>
</div>
<div class="card">
<h3>Netzwerkinfrastruktur</h3>
<p>Planung und Umsetzung stabiler, sicherer Netzwerke.</p>
</div>
<div class="card">
<h3>Systemoptimierung</h3>
<p>Performance-Analyse, Sicherheitsprüfung und Strukturierung.</p>
</div>
</div>
</section>
<section>
<h2>Projektstatus</h2>
<p>Dieses Projekt befindet sich aktuell im Aufbau. Derzeit werden keine entgeltlichen Leistungen angeboten.</p>
</section>
<footer>
<p><strong>Impressum</strong></p>
<p>Angaben gemäß § 5 TMG<br>
Heidron – IT Services<br>
PHeidron<br>
Straße Nr<br>
PLZ Stadt<br>
Telefon: 01522 1234567<br>
E-Mail: info@heidron.de</p>
<p>Verantwortlich für den Inhalt nach § 55 Abs. 2 RStV:<br>
Heidron, Anschrift wie oben.</p>
<hr>
<p><strong>Datenschutzerklärung</strong></p>
<p>Beim Aufruf dieser Website werden automatisch Daten durch den Hosting-Anbieter (GitHub Pages) verarbeitet (z. B. IP-Adresse, Datum/Uhrzeit, Browsertyp). Die Verarbeitung erfolgt gemäß Art. 6 Abs. 1 lit. f DSGVO aus berechtigtem Interesse an der sicheren Bereitstellung der Website.</p>
<p>Es werden keine Cookies oder Tracking-Dienste eingesetzt.</p>
<p>© 2026 Heidron | IT-Services</p>
</footer>
</body>
</html>