Next commited on
Commit
cfd33b6
1 Parent(s): 4597794

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -0
README.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Text Animation</title>
7
+ <style>
8
+ @keyframes fadeInOut {
9
+ 0%, 100% {
10
+ opacity: 0;
11
+ }
12
+ 50% {
13
+ opacity: 1;
14
+ }
15
+ }
16
+
17
+ .animated-text {
18
+ font-size: 3em;
19
+ font-weight: bold;
20
+ text-align: center;
21
+ margin-top: 20%;
22
+ animation: fadeInOut 3s infinite;
23
+ color: #000;
24
+ }
25
+ </style>
26
+ </head>
27
+ <body>
28
+ <div class="animated-text">HEX RVC</div>
29
+ </body>
30
+ </html>