-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (84 loc) · 2.49 KB
/
index.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
78
79
80
81
82
83
84
85
86
87
<!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>Sheet as Backend</title>
<link rel="icon" type="image/x-icon" href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTP7KAYKdsFrMOD9dm7Ze3REw2oaepOUM_8qA&usqp=CAU">
</head>
<style>
::selection {
color: #3d5af1;
background-color: #000;
}
*{
font-family: cursive;
}
.li{
padding: 20px;
border-bottom:2px #3d5af1 solid ;
width: 70%;
list-style: none;
}
img{
height:50%;
width: 50%;
}
.loader-container {
margin-top: -22px;
margin-left: -8px;
width: 100%;
height: 110%;
display: flex;
justify-content: center;
align-items: center;
position: fixed;
background: #000;
z-index: 1;
}
.spinner {
width: 64px;
height: 64px;
border: 8px solid;
border-color: #3d5af1 transparent #3d5af1 transparent;
border-radius: 50%;
animation: spin-anim 1.2s linear infinite;
}
.heading{
font-size: 2rem;
font-weight: 600;
}
.description{
font-size: 1.5rem;
font-weight: 400;
}
@keyframes spin-anim {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
<body>
<div class="loader-container" id="loader-container">
<div class="spinner"></div>
</div>
<h1 class="hi">hi how are you tho</h1>
<div class="out">
<ul class="ul">
<li class="li">
<h1 class="heading">heading</h1>
<img src="https://www.bitsathy.ac.in/wp-content/uploads/slider-03-1.jpg" alt="">
<div class="description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quas excepturi libero recusandae eligendi et dignissimos voluptate alias aut adipisci, officia necessitatibus explicabo sint porro voluptatibus rerum praesentium nisi harum aperiam?
</div>
</li>
</ul>
</div>
<!-- <img src="https://drive.google.com/file/d/1tWz4rLhQc-Vv_mNwGl-lr6dUABI-9mp2/view?usp=sharing" alt=""> -->
</body>
<script src="./index.js" defer></script>
</html>