1
2019-06-16 14:17:24 -04: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>