32 lines
907 B
HTML
32 lines
907 B
HTML
<!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>
|