Hi. Consider the following code:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title>Login</title>

<style type="text/css">
#login label {
  position:absolute;
}

input {
  margin-left:5.5em;
  margin-bottom:.2em;
}

</style>
</head>

<body>

<div id="login">
<p><b>Login to your account</b></p>

<label>Email:</label><input type="text" name="email" size="30" /><br />
<label>Password:</label><input type="password" name="password" size="30" /><br />
<input type="checkbox" name="remember" /><p>Remember me on this computer</p>
<input type="submit" value="Sign in" />

<div id="signup">

<p>Don't have an account?<br /><a href="#">Sign up!</a></p>
</div>

</div>

</body>
</html>
The checkbox is right where I want it, but I would like to put the sentence "Remember me on this computer" to the right of it, but I can't figure out how to do that. Any help would be appreciated. Thanks.