-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathText-rotating.html
More file actions
100 lines (83 loc) · 2.14 KB
/
Text-rotating.html
File metadata and controls
100 lines (83 loc) · 2.14 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
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
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
font-family: sans-serif;
padding: 0;
margin: 0;
box-sizing: border-box;
}
.outer-heading {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.main-text {
font-size: 45px;
}
.inner-heading {
border: 0px solid #ddd;
height: 50px;
line-height: 50px;
font-size: 35px;
text-transform: uppercase;
overflow: hidden;
}
.inner-heading span {
position: relative;
color: crimson;
animation: anime 10s ease infinite;
}
@keyframes anime {
0%,
100%,
20% {
top: 0;
}
25%,
45% {
top: -50px;
}
50%,
70% {
top: -100px;
}
75%,
99% {
top: -150px;
}
}
@media screen AND (width < 768px) {
.main-text {
font-size: 25px;
}
.inner-heading {
border: 0px solid #ddd;
height: 50px;
line-height: 50px;
font-size: 15px;
}
}
</style>
</head>
<body>
<div class="outer-heading">
<h1 class="main-text">We Provide,
<div class="inner-heading">
<span>
Text Encryption <br />
Image Encryption <br />
Password Encryption <br />
And Many Other Types Of Cryptographic Tools. <br />
</span>
</div>
</h1>
</div>
</body>
</html>