-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpresentationpage.html
99 lines (94 loc) · 2.84 KB
/
presentationpage.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
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="4 URL='Home/home.html'">
<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>Presentation page</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@500&family=Poppins:wght@100;300;500;600;900&display=swap" rel="stylesheet">
<style>
*{
margin: 0%;
padding: 0%;
box-sizing: border-box;
}
body{
background-image:url("back.jpeg");
background-repeat: no-repeat;
background-attachment:fixed;
background-position: 50%;
background-size:cover;
font-family: 'Oswald', sans-serif;
font-family: 'Poppins', sans-serif;
background-color: #1c1919;
color: white;
overflow:hidden;
}
.head{
width: fit-content;
margin: auto;
margin-top: 160px;
font-size: 35px;
}
.members{
width: 360px;
margin: auto;
margin-top: 30px
}
.members li{
font-size: 20px;
}
@import "compass/css3";
.loader div {
width: 20px;
height: 20px;
position: absolute;
background-color: #ccc;
top:250px;
border-radius: 50%;
}
.loader div:nth-child(1) {
background-color: #FF5460;
animation: move 2s infinite cubic-bezier(.2,.64,.81,.23);
}
.loader div:nth-child(2) {
background-color: #FF9D84;
animation: move 2s 150ms infinite cubic-bezier(.2,.64,.81,.23);
}
.loader div:nth-child(3) {
background-color: #F0E797;
animation: move 2s 300ms infinite cubic-bezier(.2,.64,.81,.23);
}
.loader div:nth-child(4) {
background-color: #75B08A;
animation: move 2s 450ms infinite cubic-bezier(.2,.64,.81,.23);
}
@keyframes move {
0% {left: 0%;}
100% {left:100%;}
}
</style>
</head>
<body>
<div class="head">
<h1>G - 3 INSIDESPORTZ</h1>
</div>
<div class="loader">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="members">
<ul>
<li>Ruwin : 20220378 - Student 1</li>
<li>Abhiman : 20220333 - Student 2</li>
<li>Pulitha : 20220388 - Student 3</li>
<li>Sanuth : 20220473 - Student 4</li>
</ul>
</div>
</body>
</html>