27 lines
822 B
HTML
27 lines
822 B
HTML
|
<!-- A big thank you to Prantham for the inspiration: https://twitter.com/Prathkum/status/1392434632935841793
|
||
|
|
||
|
This is from Kevin Powell. Its an interesting idea. I'd prefer
|
||
|
the animation to end when you get to the end of the line.
|
||
|
|
||
|
Video is called Customizable typewriter animation with CSS [w1nhwUGsG6M]
|
||
|
-->
|
||
|
|
||
|
<!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>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>Hello, my name is Kevin.</h1>
|
||
|
<p class="subtitle">Welcome to my website!</p>
|
||
|
|
||
|
<a href="https://www.youtube.com/watch?v=w1nhwUGsG6M" id="yt-link">See how Kevin created this over on YT</a>
|
||
|
</body>
|
||
|
|
||
|
</html>
|