css text typing animation
css text typing animation
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
body {
background: black;
}
div {
display: block;
position: absolute;
top: 40%;
overflow: hidden;
border-right: 4px solid greenyellow;
height: 60px;
animation: move 6s linear infinite;
}
h1 {
color: white;
font-family: serif;
}
@keyframes move {
0%{width: 0px;}
100%{width:450px;}
}
</style>
</head>
<body>
<div>
<h1> Hello guys, follow me ♥️ </h1>
</div>
</body>
</html>