<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body>
<!--输入框;placeholder表示输入框提示语;readonly只读-->
<input type="text" name="玉手" placeholder="请描述你的手" readonly="readonly" >左手</inpput><br>
<!--复选框 checkbox表示正勾选框;radio表示圆勾选框;checked表示勾选框选中;br换行符-->
<input type="checkbox" id="sleep" value="吃鸡" >吃饭 </inpput><br>
<input type="radio" name="性别" checked >女 </inpput><br>
<!--文件上传-->
<input type="file"></input><br>
<!--按钮-->
<input type="button" name="点我" value="点我点我"></input><br>
<button name="大大" value="娃哈哈"></button>
<!--图片-->
<img src="F:\dns document\loophole document\Scanning loophole\1070漏洞\reportfiles\images\b_safe.gif" ></img>
<!--表格-->
<table border="">
<tr>
<td>姓名</td>
<td>性别</td>
<td>年龄</td>
<tr>
<tr>
<td>张三</td>
<td>女</td>
<td>23</td>
<tr>

</table>
<!--iframe 内嵌其他的html页面-->
<!--iframe src="http://www.baidu.com"></iframe>
<!--div-->
<div class ="one" id="just"><h1>我是柠檬班的</h1></div>
<!--下拉列表-->
<select>
<option>杭州</option>
<option>厦门</option>
</select>
<!--富文本框,多行文本-->
<textarea cols="20" rows="10"></textarea>
</body>
</html>