25 lines
		
	
	
		
			653 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			653 B
		
	
	
	
		
			HTML
		
	
	
	
<!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>Typewriter Animation Effect with HTML, CSS, and JavaScript</title>
 | 
						|
    <link rel="stylesheet" href="style.css">
 | 
						|
    <script src="script.js" defer></script>
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
 | 
						|
    <main>
 | 
						|
        <div class="container">
 | 
						|
            <p data-typewriter="Developer...,Designer...,Photographer... ">
 | 
						|
            </p>
 | 
						|
 | 
						|
            <p data-typewriter="Coffee Roaster...,Pizza Maker...,Basket Weaver..."></p>
 | 
						|
        </div>
 | 
						|
    </main>
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |