CODE: "HTML" <html> <body> <h1>ANIMATED TEXT JS</h1> <button onclick="typeWriter()">ACTIVATE</button> <style> @import url('https://fonts.googleapis.com/css?family=Press+Start+2P'); </style> <link rel="stylesheet" href="css13.css"> <body style ="background-color: orange;"> <p id="OPEN"></p> <script> var a = 0; var text = 'VISIT WIRED2TECH.ORG TO LEARN TO CODE.This project was made by: Mohammed Ibrahim Mirza Beig.This project used the font "Press Start 2P" which is licensed under the open font license and was obtained from google fonts.'; var frameSD = 60; function typeWriter() { if (a < text.length) { document.getElementById("OPEN").innerHTML += text.charAt(a); a++; setTimeout(typeWriter, frameSD); } } </script> </body> </html> "CS
WIRED 2 TECH! : Get into TECH is an innovative web-based startup that was developed to help people who want to be part of the world of information technology. We teach through self-teaching; we create simulated applications in various programming languages that are compatible with real work assignments and let you experiment with it thus helping you learn and become more comfortable with coding.