Hallo,
noch eine Möglichkeit ist hier ein margin-left (101px) zu nehmen wenn du sowieso mit festen Werten wie px arbeitest:
______________________________________________________________
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Test</title>
<style type="text/css">
table,
td {
border: 1px solid #006699;
}
h1 {
color: white;
font-size: 1em;
line-height: 1em;
margin: 0 0 0 5px;
}
p {
color: black;
font-size: 0.7em;
margin: 5px;
}
.darkbluebox {
background-color: #006699
}
.whitebox {
background-color: #FFFFFF
}
.button {
background-color:#CCCCFF;
color: black;
border: 2px solid #006699;
margin:10px 0 0 101px;
width: 100px;
}
</style>
</head>
<body>
<table align="center" cellpadding="0" cellspacing="0" width="215">
<tr >
<td class="darkbluebox">
<h1> Mein Profil
</h1>
</td>
</tr>
<tr>
<td width="215" class="whitebox">
<form action="input_text.htm">
<p>
Email:<input style="width: 201px" name="email" type="text" size="24" maxlength="50"><br>
Passwort:<input style="width: 201px" name="password" type="text" size="24" maxlength="30"><br>
<input name="login" style="margin-left: 101px;" class="button" type="submit" size="15" maxlength="15" value="Anmelden">
</p>
</form>
</td>
</tr>
</table>
</body>
</html>
______________________________________________________________
Sicher wirst du dir leichter tun wenn du erst mal das Boxmodell (http://www.css4you.de/wsboxmodell/index.html) und die Grundregeln von HTML und CSS lernst! Mir ging es am Anfang genau so! ;-)
Gruß Andy