<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<img src="img/timg.jpg" width="100px" height="50px" alt="这是柠檬">
<br>
<audio src="img/当你.mp3" controls="controls">mp3</audio>
<br>
有序列表
<ol>
<li>第一</li>
<li>第二</li>
<li>第三</li>
<li>第四</li>
<li>第五</li>
</ol>
无序列表
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ul>
<table border="1px">
<tr>
<th>姓名</th>
<th>性别</th>
<th>出生年月</th>
</tr>
<tr>
<td>李白</td>
<td>男</td>
<td>2001-1-1</td>
</tr>
<tr>
<td>白居易</td>
<td>男</td>
<td>2001-1-1</td>
</tr>
<tr>
<td>鱼玄机</td>
<td>女</td>
<td>2001-1-1</td>
</tr>
</table>
<form action="" method="">
<!-- label:绑定标签-->
<label for="user">账号:</label>
<input type="text" id="user" placeholder="请输入账号"><br>
<label for="pwd">密码:</label>
<input type="password" id="pwd" placeholder="请输入密码"><br>
性别:
<input type="radio" name="gender">男
<input type="radio" name="gender">女
<br>
<label for="1">省份:</label>
<select name="" id="1">
<option value="">河南省</option>
<option value="">山东省</option>
<option value="">安徽省</option>
</select>
<br>
兴趣爱好:
<input type="checkbox" name="in1">篮球
<input type="checkbox" name="in2">足球
<input type="checkbox" name="in3">跑步
<input type="checkbox" name="in4">唱歌
<input type="checkbox" name="in5">跳舞
<br>
<input type="hidden" name="token" value="666f12fdsadasdgasf34fafdsfasdfasdf">
<br>
描述:<textarea name="desc" id="" cols="50" rows="20"></textarea>
<br>
<br>
<input type="submit">
<br>
<input type="file">
<br>
<input type="button" value="click">
<br>
<input type="reset" value="reset">
<br>
图片按钮:
<input type="image" src="img/click.png">
</form>
<iframe src="http://www.baidu.com" frameborder="0" width="1000px" height="300px"></iframe>
<br><br>
<iframe src="http://www.taobao.com" frameborder="1" width="1000px" height="300px"></iframe>
</body>
</html>
原文:https://www.cnblogs.com/zxy01/p/13976838.html