deepsite-project / index.html
Graysman's picture
ты не сделал
b3edcaf verified
Raw
History Blame Contribute Delete
1.22 kB
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My static Space</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body>
<div class="card">
<h1 class="text-3xl font-bold mb-4">Welcome to your static Space!</h1>
<p class="mb-2">You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
<p class="mb-4">
Also don't forget to check the
<a href="https://huggingface.co/docs/hub/spaces" target="_blank" class="text-blue-500 hover:text-blue-700">Spaces documentation</a>.
</p>
<div class="flex space-x-4">
<a href="#" class="flex items-center text-gray-700 hover:text-gray-900">
<i data-feather="home" class="mr-2"></i> Home
</a>
<a href="#" class="flex items-center text-gray-700 hover:text-gray-900">
<i data-feather="info" class="mr-2"></i> About
</a>
</div>
</div>
<script>
feather.replace();
</script>
</body>
</html>