The title pretty much says it all: I need help in making a button that will only appear 5 seconds after the page loads.
this is the code i'm working with:
                <html>
                <body onload="setTimeout(showStuff, 5000)">
                        <br><br><br><br><br><br><br><br><br><br><br><br><br>        
                        <div class=login align=center>
                        <font size=13 face=helvetica> You're doing that too much. </font><br> <br> <br>
                        <font size=5 face=helvetica>
                        You have entered the wrong username/password too many times <br>
                        <br><br>
                        <br><br>
                        Click "OK" to go back to the log-in page <br> <br>
                        <p id="Button"><input type=submit onclick="myFunction()" id="Button" value="OK"> </p>
                        <script>
                        document.getElementById("Button").style.visibility = "hidden";
                        function showStuff(Button){
                        document.getElementById("Button").style.display = "inline";}
                        function myFunction() {
                            window.location = "project.html"}
                        </script>
            </div> </font>
                </body>
            </html>
 
     
     
     
     
     
    