Aqui te dejo uno, espero te sirva...
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
#contieneform{width:300px; height:300px; margin:auto;}
#form{width:300px; height:300px; margin:auto; margin:auto;}
fieldset{color:#006699; border:solid 1px #006699; font-size:12px; height:300px; width:300px; margin:auto;}
#campos{ margin-top:50px;}
legend{ display:marker;}
#envio{width:50px; clear:left; margin-top:20px}
</style>
</head>
<body>
<div id="contieneform">
<form id="form" method="post" name="form" action="">
<fieldset>
<legend>Tu Formulario</legend>
<div align="center" id="campos">
<div>Nombre:<br />
<input type="text" name="nombre" class="nombre" />
</div>
<div>Título:<br />
<input type="text"/>
</div>
<div>Comentario:<br />
<textarea rows="5" cols="20"></textarea>
</div>
<div id="envio"><input type="submit" value="Enviar" />
</div>
</div>
</fieldset>
</form>
</div>
</body>
</html>