-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (56 loc) · 1.76 KB
/
Copy pathindex.html
File metadata and controls
60 lines (56 loc) · 1.76 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="KodiaTech – Mobile App Entwicklung">
<title>KodiaTech</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="hero">
<nav class="nav">
<div class="nav-brand">
<img src="KodiaTech.svg" alt="KodiaTech" class="nav-logo">
<span class="nav-text">KodiaTech</span>
</div>
</nav>
<div class="hero-content">
<img src="KodiaTech.svg" alt="KodiaTech Logo" class="hero-logo">
<h1>KodiaTech</h1>
<p class="tagline">Mobile Apps, die verbinden.</p>
</div>
</header>
<main>
<section class="about" id="about">
<h2>Über uns</h2>
<p>
KodiaTech entwickelt moderne mobile Anwendungen, die den Arbeitsalltag
vereinfachen und Menschen zusammenbringen.
</p>
</section>
<section class="product" id="product">
<h2>Unser Produkt</h2>
<article class="product-card">
<h3>UnionUp</h3>
<p>Die Management-App für Vereine und Organisationen – Finanzen, Mitglieder, Inventar und Events an einem Ort.</p>
</article>
</section>
<section class="contact" id="contact">
<h2>Kontakt</h2>
<p>
<a href="mailto:mail@kodia-tech.com">mail@kodia-tech.com</a>
</p>
</section>
</main>
<footer>
<div class="footer-content">
<a href="impressum.html">Impressum</a>
<div class="footer-brand">
<img src="KodiaTech.svg" alt="KodiaTech" class="footer-logo">
<span class="copyright">© 2025 KodiaTech</span>
</div>
</div>
</footer>
</body>
</html>