1、input系统列标签

example:

<!DOCTYPE html>

<html>

     <head>

           <meta http-equiv="content-type" content="text/html;charset=utf-8">

           <title>页面一</title>    

     </head>

     <body>

           <input/>

           <br/>

           <input type='text'/>

           <br/>

           <input type='password'/>

           <br/>

           <input type='checkbox'  name='ge'/>

           <input type='checkbox'  name='ge'/>

           <br/>

           男:<input type='radio' name='gen'/>

           女:<input type='radio' name='gen'/>

           中性:<input type='radio' name='gen'/>

           <br/>

           <input type='button' value='提交'/>

           <input type='submit' value='提交'/>

           <br/>

           <input type='file' />

     </body>

</html>

结果:

spacer.gif

2、多行文本框 textarea标签

example:

<textarea>描述不能少于50字</textarea>