I’ve got a button, two textboxes and some text. How to put all this elements into the center of page?
<body>
Hello world!
<p><input TYPE="text" name="textbox1"><p>
<p><input TYPE="text" name="textbox2"></p>
<p><input TYPE="button" VALUE="Enter" ONCLICK="HomeButton()"></p>
<script>
function HomeButton()
{
location.href="registration.html";
}
</script>
</body>
I would do something like this, or you can use external CSS Sheets 🙂
This will make a set width of 800px and then it will align it in the center of the page