"Untitled"
Bootstrap 4.1.1 Snippet by Umerfarooq

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale="> <title>Auto Write Text</title> </head> <body> </body> </html>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap'); body{ background: hsl(0, 0%, 98%); color: hsl(180, 62%, 55%); font-family: 'Poppins', sans-serif; font-size: 2em; font-weight: 600; display: flex; align-items: center; justify-content: center; min-height: 100vh; }
const text = "WLCM to ❤ . "; let index = 0; function writeText() { document.body.innerText = text.slice (0, index); index++; if (index > text.length - 1){ index = 0; } } setInterval(writeText, 300);

Related: See More


Questions / Comments: