deepsite-project / index.html
McPick1e's picture
this is pitiful
7a3c904 verified
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Home | Static Space</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<custom-navbar></custom-navbar>
<div class="container">
<div class="card">
<h1>Welcome to Your Static Space!</h1>
<p>This is a modern, responsive static website hosted on Hugging Face Spaces.</p>
<div class="features">
<div class="feature-card">
<h2>⚑ Fast</h2>
<p>Static sites load instantly with no server-side processing.</p>
</div>
<div class="feature-card">
<h2>πŸ”’ Secure</h2>
<p>No databases or dynamic code means less attack surface.</p>
</div>
<div class="feature-card">
<h2>🌐 Simple</h2>
<p>Just HTML, CSS, and JavaScript - no complex setup required.</p>
</div>
</div>
<p class="cta">Explore our <a href="/about.html">About page</a> to learn more or <a href="/contact.html">contact us</a> with any questions.</p>
</div>
</div>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
</body>
</html>