Message Input form
<head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style rel="stylesheet" type="text/css"> .button { background: url(img/menubg.gif) repeat-x bottom left #f4f4f4; border-bottom: 1px solid #d8d8d8; border-left: 4px solid #ccc; border-right: 1px solid #d8d8d8; border-top: 1px solid #d8d8d8; color: #505050; font-weight: 700; margin: 0 0 15px; padding: 7px 7px 7px 11px; width: 120px; } input,textarea { border: 1px solid #ccc; font-family: Verdana, Tahoma, Arial, Sans-Serif; font-size: 1em; margin: 0; padding: 4px; } label { margin: 2px; } input { width: 200px; } textarea { width: 400px; } </style> </head> <body> <form action="#" method="post" id="sampleform"> <p> <label for="author">Name:</label> <br /> <input type="text" name="author" id="author" class="textarea" value="" tabindex="1" /> </p> <p> <label for="email">E-mail:</label> <br /> <input type="text" name="email" id="email" value="" tabindex="2" /> </p> <p> <label for="comment">Message:</label> <br /> <textarea name="comment" id="comment" rows="7" cols="50" tabindex="4"></textarea> </p> <p> <input class="button" name="submit" id="submit" type="submit" tabindex="5" value="Submit" /> </p> </form> </body> </html>