-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path18th class.html
More file actions
72 lines (60 loc) · 1.55 KB
/
18th class.html
File metadata and controls
72 lines (60 loc) · 1.55 KB
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
<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- <p>Date:28/December/2022</p>
<p>Day:Wednessday</p>
<p>Class= yes </p> -->
<style>
*{
margin: 190;
padding: 200;
}
.wraper{
background-color: blue;
width: 100%;
height: 100vh;
animation: myfun 20s infinite;
}
@keyframes myfun {
0%{
background-color: blue;
}
10%{
background-color: green;
}
20%{
background-color: yellow;
}
30%{
background-color: brown;
}
40%{
background-color: black;
}
50%{
background-color: blueviolet;
}
60%{
background-color: aqua;
}
70%{
background-color: chartreuse;
}
80%{
background-color: chocolate;
}
90%{
background-color: coral;
}
100%{
background-color: blue;
}
}
</style>
<div class="wraper">
</div>
</body></html>