cool-cool-website / index.html
julien-c's picture
julien-c HF Staff
change text to "cool cool"
739eaca verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cool Cool</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-100">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-12">
<div class="text-center">
<h1 class="text-6xl font-bold text-gray-800 mb-6">cool cool</h1>
<p class="text-xl text-gray-600">Welcome to the coolest place on the web</p>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://deepsite.hf.co/deepsite-badge.js"></script>
</body>
</html>