12 lines
410 B
HTML
12 lines
410 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body class="bg-slate-800 text-white py-6 px-8">
|
|
<h1 class="text-3xl font-bold underline">Hello, world!</h1>
|
|
<p>Visit the <a href="/blog.html" class="text-orange-300">blog</a>!</p>
|
|
</body>
|
|
</html> |