Landingpage für Die KI Praxis

This commit is contained in:
Martin Rattensberger
2024-10-19 16:47:31 +02:00
parent 5e2791a35c
commit cea7696dfb
2 changed files with 73 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 KiB

73
lp/ki-praxis.html Normal file
View File

@@ -0,0 +1,73 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kontakt zu Die KI Praxis</title>
<title>Landingpage Die KI Praxis</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f7f7f7;
}
header, footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1.5em 0;
}
main {
padding: 20px;
max-width: 800px;
margin: auto;
}
section {
background-color: #fff;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-link {
color: #3366cc;
text-decoration: none;
}
.contact-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Willkommen bei Die KI Praxis</h1>
<p>Ihre Anlaufstelle für KI-Lösungen und Technologien</p>
</header>
<main>
<section id="about">
<h2>Über uns</h2>
<p>Bei Die KI Praxis sind wir bestrebt, Ihnen die neuesten KI-Technologien und -Lösungen anzubieten. Unsere Expertise hilft Ihnen dabei, das Beste aus der Künstlichen Intelligenz herauszuholen.</p>
</section>
<section id="contact">
<h2>Kontakt</h2>
<p>Für Anfragen und weitere Informationen kontaktieren Sie uns bitte unter:</p>
<p><a href="https://www.skool.com/die-ki-praxis/about">Die KI Praxis</a></p>
<!-- This section is a placeholder for additional content from the provided image -->
<section id="additional-content">
<h2>Unsere Leistungen</h2>
<p>Fügen Sie hier die Beschreibung und Dienste gemäß Ihrem Bild "die-ki-praxis_visitenkarte01.png" ein.</p>
</section>
<section id="contact">
<h2>Kontakt</h2>
<p>Für Anfragen und weitere Informationen kontaktieren Sie uns bitte unter:</p>
<p><a href="https://www.skool.com/die-ki-praxis/about" class="contact-link">Die KI Praxis</a></p>
</section>
</main>
<footer>
<p>&copy; 2023 Die KI Praxis. Alle Rechte vorbehalten.</p>
</footer>
</body>
</html>