aktuelle online-Version inkl. Landingpage und styles.css

This commit is contained in:
2025-01-09 14:13:20 +01:00
parent a01e30899e
commit b179f23c06
12 changed files with 282 additions and 16 deletions

42
template.html Normal file
View File

@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- title start -->
<!-- title end -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<a href="index.html">
<h1>MR AI Consulting</h1>
<p>Maximieren Sie Ihr Geschäftspotenzial mit KI Technologie</p>
</a>
</header>
<div class="content-wrapper">
<main>
<!-- content start -->
<!-- content end -->
</main>
</div>
<footer>
<div class="container">
<p>&copy; 2025 MR AI Consulting. Alle Rechte vorbehalten.</p>
<nav>
<ul>
<li><a href="impressum.html">Impressum</a></li>
<li><a href="datenschutz.html">Datenschutz</a></li>
</ul>
</nav>
</div>
</footer>
</body>
</html>