122 lines
3.1 KiB
HTML
122 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Document</title>
|
||
</head>
|
||
|
||
<body>
|
||
|
||
<p> 段落 </p>
|
||
<h1>标题1</h1>
|
||
<h2>标题2</h2>
|
||
<h3>标题3</h3>
|
||
<h4>标题4</h4>
|
||
<h5>标题5</h5>
|
||
<h6>标题6</h6>
|
||
|
||
<img src="https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png" alt="抱歉,图片无法加载"/>
|
||
|
||
<a href="https://www.baidu.com/" target="_blank">百度</a>
|
||
|
||
<ul>
|
||
<li>无序列表1</li>
|
||
<li>无序列表2</li>
|
||
<li>无序列表3</li>
|
||
<li>无序列表4</li>
|
||
</ul>
|
||
|
||
<ol>
|
||
<li>有序列表 1</li>
|
||
<li>有序列表 2</li>
|
||
<li>有序列表 3</li>
|
||
<li>有序列表 4</li>
|
||
</ol>
|
||
|
||
<select name="" id="">
|
||
<option value="">-请选择-</option>
|
||
<option value="">安徽省</option>
|
||
<option value="">江苏省</option>
|
||
</select>
|
||
|
||
<textarea placeholder="请输入留言" cols="30" rows="10"></textarea>
|
||
|
||
<input type="text" placeholder="用户名">
|
||
<input type="password" placeholder="密码">
|
||
<input type="number" placeholder="验证码">
|
||
<input type="date">
|
||
|
||
<h2>请选择你的性别</h2>
|
||
男<input type="radio" name="xb">
|
||
女<input type="radio" name="xb">
|
||
|
||
<input type="checkbox" name="www">
|
||
<input type="checkbox" name="www">
|
||
<input type="checkbox" name="www">
|
||
|
||
<input type="color" name="">
|
||
|
||
<input type="file" name="">
|
||
|
||
<input type="time" name="">
|
||
|
||
<input type="submit" value="登 录">
|
||
<button>登 录</button>
|
||
|
||
<input type="reset" value="登 录"/>
|
||
|
||
<button>登 录</button>
|
||
|
||
<form action="http://127.0.0.1/index.php">
|
||
<input type="text" name="user_name" placeholder="用户名">
|
||
<input type="submit" value="登 录">
|
||
<input type="reset" value="清除">
|
||
<input type="button" value="登 录">
|
||
</form>
|
||
|
||
<video src="https://www.runoob.com/try/demo_source/movie.mp4" controls autoplay muted loop
|
||
poster="https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png"></video>
|
||
|
||
<audio src="https://www.runoob.com/try/demo_source/movie.mp4" controls></audio>
|
||
|
||
|
||
<table>
|
||
<tr>
|
||
<th>标题</th>
|
||
<th>价格</th>
|
||
<th>说明</th>
|
||
</tr>
|
||
|
||
<tr>
|
||
<td>测试1</td>
|
||
<td>10元</td>
|
||
<td>哈哈哈哈</td>
|
||
</tr>
|
||
<tr>
|
||
<td>测试1</td>
|
||
<td>10元</td>
|
||
<td>哈哈哈哈</td>
|
||
</tr>
|
||
<tr>
|
||
<td>测试1</td>
|
||
<td>10元</td>
|
||
<td>哈哈哈哈</td>
|
||
</tr>
|
||
</table>
|
||
|
||
|
||
<p>
|
||
在<strong> HTML 4.01 </strong>
|
||
<br> 中,<i>table</i> 元素的<em> "align" </em>和<del> "bgcolor" </del>属性是不被赞成使用的。
|
||
在 XHTML 1.0 Strict DTD,table <big>元素的</big> "align" 和 "bgcolor" <small>属性</small> 是不被支持的
|
||
</p>
|
||
|
||
|
||
<div>在 XHTML 1.0 Strict DTD,table </div>
|
||
<span>在 XHTML 1.0 Strict DTD,table </span>
|
||
</body>
|
||
|
||
</html> |