HTML5,简单的注册页面

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <title>表单</title>
 5         <meta charset="utf-8">
 6     </head>
 7 <body>
 8     <form>
 9         账号:<input type="text" name="name">
10         <br>
11         <br>
12         密码:<input type="password" name="password">
13         <br>
14         <br>
15         性别:<input type="radio" name="sex"><input type="radio" name="sex">16         <br>
17         <br>
18         爱好:<input type="checkbox" name="zuqiu">运动
19          <input type="checkbox" name="dongm">动漫 
20          <input type="checkbox" name="youxi">游戏
21          <input type="checkbox" name="yuedu">阅读
22         <br>
23         <br>
24         个人简介:<br>
25         <textarea cols="35"rows="10"value="ziwojieshao">
26             
27         </textarea>
28         <br>
29         <br>
30         <input type="submit" value="提交">
31         <input type="reset" value="重置">
32         <input type="button" value="按钮">
33     </form>
34 </body>
35 <html>

猜你喜欢

转载自www.cnblogs.com/qingzhi21/p/9657280.html