-
Notifications
You must be signed in to change notification settings - Fork 0
/
Google.html
77 lines (74 loc) · 3.21 KB
/
Google.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Style Loading Skeleton</title>
<!-- Tailwind CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100 flex flex-col min-h-screen">
<!-- Navigation Bar -->
<div class="animate-pulse bg-white shadow-md p-4">
<div class="flex items-center space-x-4">
<div class="bg-gray-300 h-8 w-32 rounded"></div>
<div class="bg-gray-300 h-8 w-24 rounded"></div>
<div class="flex-1"></div>
<div class="bg-gray-300 h-8 w-16 rounded"></div>
</div>
</div>
<!-- Main Content -->
<main class="flex-1 p-6">
<!-- Section 1 -->
<div class="animate-pulse mb-6">
<div class="bg-gray-300 h-6 rounded w-1/3 mb-4"></div>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4">
<!-- Card 1 -->
<div class="bg-gray-300 h-40 rounded-lg"></div>
<!-- Card 2 -->
<div class="bg-gray-300 h-40 rounded-lg"></div>
<!-- Card 3 -->
<div class="bg-gray-300 h-40 rounded-lg"></div>
</div>
</div>
<!-- Section 2 -->
<div class="animate-pulse">
<div class="bg-gray-300 h-6 rounded w-1/4 mb-4"></div>
<div class="space-y-4">
<!-- List Item 1 -->
<div class="bg-gray-300 h-16 rounded-lg p-4 flex items-center space-x-4">
<div class="bg-gray-400 h-12 w-12 rounded-full"></div>
<div class="flex-1 space-y-2">
<div class="bg-gray-400 h-4 rounded w-3/4"></div>
<div class="bg-gray-400 h-3 rounded w-1/2"></div>
</div>
</div>
<!-- List Item 2 -->
<div class="bg-gray-300 h-16 rounded-lg p-4 flex items-center space-x-4">
<div class="bg-gray-400 h-12 w-12 rounded-full"></div>
<div class="flex-1 space-y-2">
<div class="bg-gray-400 h-4 rounded w-3/4"></div>
<div class="bg-gray-400 h-3 rounded w-1/2"></div>
</div>
</div>
<!-- List Item 3 -->
<div class="bg-gray-300 h-16 rounded-lg p-4 flex items-center space-x-4">
<div class="bg-gray-400 h-12 w-12 rounded-full"></div>
<div class="flex-1 space-y-2">
<div class="bg-gray-400 h-4 rounded w-3/4"></div>
<div class="bg-gray-400 h-3 rounded w-1/2"></div>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="animate-pulse bg-white shadow-md p-4">
<div class="flex justify-center space-x-4">
<div class="bg-gray-300 h-4 w-32 rounded"></div>
<div class="bg-gray-300 h-4 w-32 rounded"></div>
<div class="bg-gray-300 h-4 w-32 rounded"></div>
</div>
</footer>
</body>
</html>