Código :
<div id="formulario" >
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<fieldset id="usuario">
<legend> Rellena los siguientes campos</legend>
<ul>
<li><p><label for="nombre">Nombre</label><input id="nombre" name="nombre" type="text" value="Nombre"/></p></li>
<li><p><label for="apellidos">Apellidos</label><input id="apellidos" name="apellido" type="text" value="Apellidos"/></p></li>
<li><p><label for="email">Email</label><input id="email" name="mail" type="text" value="Email"/></p></li>
<li class="textarea"><p><label for="email">Comentario</label> <textarea cols="15" rows="2"> comentario</textarea></p></li>
</ul>
</fieldset>
<input type="submit" id="submit" value="Enviar"/>
</form>
</div>
los css
body {
background-color:#CC9900;
}
#formulario {
margin: 0 auto;
width:650px;
height:250px;
}
form {
margin:0 auto;
width:650px;
height:250px;
}
fieldset#usuario {
border-color:#CC99CC;
}
legend {
padding: 3px;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
color:#CC3399;
font-weight:bold:
}
legend li {
display:block;
}
li {
list-style-type:none;
}
ul {
width:300px;
}
label {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:bold;
color:#CC0099;
display:block;
float:left;
}
input {
margin:0px;
padding:0px;
width:100px;
border-left-color:#CC33CC;
border-right-color:#CC33CC;
border-top-color:#CC66CC;
border-bottom-color:#CC66CC;
}
.textarea {
height:80px;
}
input#submit {
margin-top:5px;
margin-left:544px;
}
p {
clear:both;
}