-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (20 loc) · 829 Bytes
/
index.html
File metadata and controls
26 lines (20 loc) · 829 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Profile Card Skeleton Screen | Rustcode</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
</head>
<body>
<div class="container height-vh d-flex justify-content-center align-items-center">
<div class="card-container">
<div class="card-upper-container inner-card animate-pulse"></div>
<div class="card-lower-container p-3">
<div class="col-12 inner-card animate-pulse mb-3"> </div>
<div class="col-12 inner-card animate-pulse mb-3"> </div>
<div class="col-12 inner-card animate-pulse mb-3"> </div>
</div>
</div>
</div>
</body>
</html>