HTML
CSS
JS
Edit on Codewith.it
<pre id="demo"> </pre>
var i = 0; var txt = '<html>\n <head>\n <title>Hello!</title>\n </head>\n <body>\n <h1>My new page</h1>\n <div>\n Lorem Ipsum sem justo tristique commodo finibus consequat mar romani elit latinium mon\n </div>\n </body>\n</html>'; var speed = 100; function typeWriter() { if (i < txt.length) { document.getElementById("demo").innerHTML += txt.charAt(i); i++; setTimeout(typeWriter, speed); } } typeWriter()