1 <html lang="en">
 2 
 3 <head>
 4     <meta charset="UTF-8">
 5     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 6     <meta http-equiv="X-UA-Compatible" content="ie=edge">
 7     <title></title>
 8 </head>
 9 
10 <body>
11     <hr width="500" color="blue" />
12     <img src="images/1.jpg" alt="我是一张图片" title="标题" width="200" height="200" border="10" />
13     <fieldset>
14         <legend>用户等登陆</legend>
15         用户登录:<label> <input type="text"></label><br> 密码:
16         <label> <input type="text"></label>
17     </fieldset>
18     <div>
19         <p>颜色</p> <input type="color" name="" id="" />
20         <p>邮箱</p> <input type="email" name="" id="" />
21         <p>手机</p> <input type="tel" name="" id="" />
22         <p>数字</p> <input type="number" />
23         <p>搜索</p> <input type="search" />
24         <p>区域</p> <input type="range" />
25         <p>年月日:</p> <input type="date" />
26         <p>月份:</p> <input type="month" />
27         <p>星期:</p> <input type="week" name="" id="" />
28         <p>时间:</p> <input type="time" name="" id="" />
29 
30     </div>
31 </body>
32 
33 </html>