33763-dev/templates/website/classic.html
2025-08-31 09:55:15 +00:00

25 lines
754 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{BUSINESS_NAME}}</title>
<style>
body { font-family: serif; margin: 0; }
.hero { background-color: #333; color: white; padding: 4rem 2rem; text-align: center; }
.hero h1 { font-size: 3rem; margin: 0; }
.hero p { font-size: 1.2rem; }
.content { padding: 2rem; }
</style>
</head>
<body>
<header class="hero">
<h1>{{BUSINESS_NAME}}</h1>
<p>{{TAGLINE}}</p>
</header>
<main class="content">
<h2>Welcome to our website!</h2>
<p>This is a classic website generated for your business.</p>
</main>
</body>
</html>