retro-terminaljs
Version:
Create retro terminals feeding live data.
20 lines • 447 B
HTML
<html>
<head>
<link rel="stylesheet" href="./intro.css" />
</head>
<body>
<div>
<div class='terminal'></div>
<h3>RETRO</h3>
<h3>TERMINALJS</h3>
</div>
<script>
Array(8).fill().map(()=>{
document.getElementsByClassName("terminal")[0].appendChild(document.createElement("span"));
setTimeout(function() {
window.location = "./terminal.html";
}, 8000);
});
</script>
</body>
</html>