-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogect1_welcometxt.html
64 lines (54 loc) · 1.01 KB
/
progect1_welcometxt.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
<!DOCTYPE html>
<!-- Created By AsTachnology - astachnology.com -->
<html>
<head>
<meta charset="utf-8">
<title>Auto Write</title>
<style>
body {
margin: 0px;
display: flex;
align-items: center;
background: blueviolet;
position: absolute;
top: 10%;
}
.text-typing {
padding: 10px 20px;
background: #fff;
font-size: 21px;
font-family: monospace;
border-radius: 20px;
}
.text-typing p {
margin: 0px;
white-space: nowrap;
overflow: hidden;
animation: typing 4s steps(22, end) forwards,
blink 1s infinite;
}
@keyframes typing {
0% {
width: 0%
}
100% {
width: 100%
}
}
@keyframes blink {
100%,
10% {
border-right: 2px solid transparent;
}
50% {
border-right: 2px solid #222;
}
}
</style>
</head>
<body>
<div class="text-typing">
<p>Welcome to AsTachnology </p>
</div>
</body>
</html>