119 lines
3.2 KiB
HTML
119 lines
3.2 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>测试</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>标题1</h1>
|
|
<h2>标题1</h2>
|
|
<h3>标题1</h3>
|
|
<h4>标题1</h4>
|
|
<h5>标题1</h5>
|
|
<h6>标题1</h6>
|
|
|
|
|
|
<a href="https://www.baidu.com/" target="_blank">超链接</a>
|
|
|
|
<a href="tel:15155145354">联系我们</a>
|
|
|
|
<img width="100" src="https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png" alt="图片无法显示">
|
|
<img width="100" src="https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png" alt="图片无法显示">
|
|
|
|
<p>段落</p>
|
|
|
|
<span>span标签</span>
|
|
|
|
<ul>
|
|
<li>无序列表</li>
|
|
<li>无序列表</li>
|
|
<li>无序列表</li>
|
|
</ul>
|
|
|
|
<ol>
|
|
<li>有序列表</li>
|
|
<li>有序列表</li>
|
|
<li>有序列表</li>
|
|
</ol>
|
|
|
|
<video controls loop autoplay muted poster="https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png"
|
|
src="https://www.runoob.com/try/demo_source/movie.mp4"></video>
|
|
|
|
<audio src=""></audio>
|
|
|
|
<input disabled type="text" placeholder="请输入用户名">
|
|
<input type="password" placeholder="请输入密码">
|
|
<input type="number" name="" id="" placeholder="请输入手机号">
|
|
<input type="file" name="" id="">
|
|
|
|
<input type="button" value="登录">
|
|
<button>登录</button>
|
|
|
|
<!--form 表单-->
|
|
<input type="submit" value="登录">
|
|
|
|
<input type="date" value="登录">
|
|
|
|
<input type="time" value="登录">
|
|
|
|
<h2>(单选)选择你的答案:</h2>
|
|
<input type="radio" name="rrrr" id="">
|
|
<input type="radio" name="rrrr" id="">
|
|
<input type="radio" name="ddd" id="">
|
|
<input type="radio" name="ddd" id="">
|
|
|
|
<input type="color">
|
|
|
|
|
|
<hr>
|
|
|
|
<h2>登录</h2>
|
|
<form action="http://127.0.0.1/login.php" method="POST">
|
|
<input type="text" name="username" placeholder="用户名">
|
|
<input type="password" name="userpwd" placeholder="密码">
|
|
<input type="submit" value="登录">
|
|
</form>
|
|
|
|
<textarea name="" id="" cols="30" rows="10" placeholder="请输入留言"></textarea>
|
|
|
|
<select name="" id="">
|
|
<option value="">--请选择--</option>
|
|
<option value="">合肥</option>
|
|
<option value="">南京</option>
|
|
<option value="">上海</option>
|
|
</select>
|
|
|
|
|
|
<p>
|
|
<del>CSDN</del> 是 <big>全球知</big> 名中文 <small>IT技术交</small> 流平台,创建于1999年, <sub>包含原</sub> 创博客、精 <sup>品</sup> 问答、职
|
|
<strong>业培</strong> 训、技术 <b>论</b> 坛、资 <em>源下</em> 载等 <i>产品</i> 服务,提供原创、优质、完整 <center>内容</center> 的专业IT技术开发社区.
|
|
</p>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>姓名</th>
|
|
<th>年龄</th>
|
|
</tr>
|
|
<tr>
|
|
<td>刘兵</td>
|
|
<td>18</td>
|
|
</tr>
|
|
<tr>
|
|
<td>刘兵</td>
|
|
<td>18</td>
|
|
</tr>
|
|
<tr>
|
|
<td>刘兵</td>
|
|
<td>18</td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html> |