feat: Create simple HTML5 page with separate CSS for AI consultants
This commit is contained in:
31
index.html
31
index.html
@@ -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>© 2024 AI Consultants</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user