54 lines
1.8 KiB
HTML
54 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>OMG Consulting</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>OMG Consulting</h1>
|
|
<h2>Ihre Experten für KI-Beratung und innovative Lösungen</h2>
|
|
</header>
|
|
<main>
|
|
<section class="consultant">
|
|
<h2>Consultant 1</h2>
|
|
<p>Experte für maschinelles Lernen und Datenanalyse.</p>
|
|
<div class="consultant-details">
|
|
<p>Details zu Consultant 1...</p>
|
|
</div>
|
|
<div class="consultant-details">
|
|
<p>Details zu Consultant 2...</p>
|
|
</div>
|
|
<div class="consultant-details">
|
|
<p>Details zu Consultant 3...</p>
|
|
</div>
|
|
</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>
|
|
<script>
|
|
document.querySelectorAll('.consultant').forEach(item => {
|
|
item.addEventListener('click', event => {
|
|
document.querySelectorAll('.consultant').forEach(c => {
|
|
c.classList.remove('active');
|
|
c.querySelector('.consultant-details').style.display = 'none';
|
|
});
|
|
item.classList.add('active');
|
|
item.querySelector('.consultant-details').style.display = 'block';
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|