feat: Create simple HTML5 page with separate CSS for AI consultants

This commit is contained in:
2024-10-10 15:12:03 +02:00
parent d449ad08dc
commit aedbaaf163
2 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Consultants</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>AI Consultants</h1>
</header>
<main>
<section class="consultant">
<h2>Consultant 1</h2>
<p>Experte für maschinelles Lernen und Datenanalyse.</p>
</section>
<section class="consultant">
<h2>Consultant 2</h2>
<p>Spezialist für natürliche Sprachverarbeitung und KI-Strategien.</p>
</section>
<section class="consultant">
<h2>Consultant 3</h2>
<p>Berater für KI-Implementierung und ethische KI-Praktiken.</p>
</section>
</main>
<footer>
<p>&copy; 2024 AI Consultants</p>
</footer>
</body>
</html>

24
styles.css Normal file
View File

@@ -0,0 +1,24 @@
body {
font-family: Arial, sans-serif;
background-color: #fff;
color: #000;
margin: 0;
padding: 0;
}
header, footer {
background-color: #000;
color: #fff;
text-align: center;
padding: 1em 0;
}
main {
padding: 2em;
}
.consultant {
border: 1px solid #000;
margin: 1em 0;
padding: 1em;
}