merakiui/components/skeleton/HeaderWithParagraph.html

24 lines
792 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meraki UI Components</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="w-full max-w-md mx-auto animate-pulse p-9">
<h1 class="h-2 bg-gray-300 rounded-lg w-52 dark:bg-gray-600"></h1>
<p class="w-48 h-2 mt-6 bg-gray-200 rounded-lg dark:bg-gray-700"></p>
<p class="w-full h-2 mt-4 bg-gray-200 rounded-lg dark:bg-gray-700"></p>
<p class="w-64 h-2 mt-4 bg-gray-200 rounded-lg dark:bg-gray-700"></p>
<p class="w-4/5 h-2 mt-4 bg-gray-200 rounded-lg dark:bg-gray-700"></p>
</div>
</body>
</html>