1
2018-02-19 18:57:16 -05:00

9 lines
268 B
HTML

<div id = "myDiv"><img id = "myImage" src = "../img/load.gif" style="width:100%;"></div><br>
<script type = "text/javascript">
setTimeout(function(){
document.getElementById("myDiv").style.display="none";
}, 6000);
document.location = "./index.html";
</script>