Create a simple splash screen using html css and javascript
Create a simple splash screen using html css and javascript. Include comments
Solution
<html>
<head>
<title>HELLO</title>
<style type=\"text/CSS\">
body {background-color: blue}
</style>
<script type=\"text/javascript\">
window.onload=secout;
function secout(){
window.setTimeout(\"redirect()\",5000)}
function redirect(){
window.location=\"main.html\"
return}
</script>
</head>
<body onload=\"secout()\">
<img src=\"swarup.jpg\">
<img src=\"n.gif\">
<h1>thank u</h1>
<br>
<form>
<input type=\"button\" value=\"main \" oClick=\"redirect()\">
</form>
</body>
</html>
