24 lines
709 B
HTML
24 lines
709 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ReflectOnAI</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<link rel="icon" type="image/svg+xml" href="favicon.svg">
|
|
</head>
|
|
<body>
|
|
<header class="hero">
|
|
<div class="container">
|
|
<h1 class="headline">ReflectOnAI</h1>
|
|
<p class="subtitle">A space to reflect on the use of AI: the good, the bad, and the ugly.</p>
|
|
</div>
|
|
</header>
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<p>© 2025 ReflectOnAI. All rights reserved.</p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|