I was wondering, how can I position the elements in my html code? I heard there is something called frames which might help, but I'm not sure how it works. Basically, I want this login interface to be placed in the middle of the screen, instead of top left by default.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Login</title>
</head>
<body>
<form action="login" method="post">
<h3>Employee Login</h3>
<b>Employee ID:</b> <br />
<input type="text"name="employee_id" size="20"><br /><br />
<b>Password:</b><br />
<input type="password" name="password" size="20"><br /><br />
<input type="submit" value="Login"><br /><br />
</form>
</body>
</html>