-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path24thclass.html
More file actions
43 lines (36 loc) · 854 Bytes
/
24thclass.html
File metadata and controls
43 lines (36 loc) · 854 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!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>Document</title>
</head>
<body>
<!-- <p>Date:8/December/2023</p>
<p>Day: Friday</p>
<p>Class=no </p> -->
<style>
h1{
font-size: 3em;
letter-spacing: 1px;
font-weight: bold;
font-family: 'Montserrat', sans-serif;
-webkit-background-clip: text;
background: text;
-webkit-text-fill-color: transparent;
animation: text 7.5s linear infinite;
}
@keyframes text {
from{
background-position: 0% 50%;}
to{
background-position: 100% 100%;
}
}
</style>
<h1>
HELLO<BR /> WORLD
</h1>
</body>
</html>