Eine andere Lösung, wäre folgende:
Code:
<!DOCTYPE
HTML PUBLIC "-//
W3C//DTD
HTML 4.01 Transitional//EN">
<
html>
<head>
<title>Untitled</title>
<style>
.button {
background-color: #1D317B;
color: #FFFFFF;
width: 100px;
text-align: center;
padding: 5px;
}
#btn_home {
float: left;
}
#btn_contact {
float: right;
}
</style>
</head>
<body>
<input type="Button" id="btn_home" class="button" value="Home" />
<input type="Button" id="btn_contact" class="button" value="Contact" />
</body>
</
html>
...
...