<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>一级标签</h1>
<h2>二级标签</h2>
<h3>三级标签</h3>
<hr/>
<p>两只老虎</p>
<p>跑得快</p>
一只没有耳朵 <br/>
<strong>粗体标签</strong>
<en>斜体标签</en>
空格
大于号:>
小于号:<
版权符号:©
<img src="../resource/image/111111111.jpg" alt="图片缺失" title="悬停文字" width="1966" height="1967">
<a href="https://www.baidu.com" target="_blank">点击我跳转到百度</a>
<br>
<a href="https://www.baidu.com">
<img src="../resource/image/111111111.jpg" alt="丢失图片" title="悬停文字" width="1966" height="1967">
</a>
<a href="#top">回到顶部就是指跳到这儿来</a>
<a href="">回到顶部</a>
<a href="2.基本标签.html#down">跳转</a>
<a name="down">down</a>
<a href="mailto:2275449942@qq.com">点击联系我</a>
<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=&site=qq&menu=yes"><img border="0" src="http://wpa.qq.com/pa?p=2::51" alt="加我领取小电影" title="加我领取小电影"/></a>
<ol>
<li>java</li>
<li>python</li>
</ol>
<hr>
<ul>
<li>java</li>
<li>python</li>
</ul>
<dl>
<dt>学科</dt>
<dd>java</dd>
<dd>python</dd>
<dd>c</dd>
<dt>位置</dt>
<dd>西安</dd>
<dd>北京</dd>
</dl>
<table border="1px">
<tr>
<td colspan="4">1-1</td>
</tr>
<tr>
<td rowspan="2">2-1</td>
<td>2-2</td>
<td>2-3</td>
<td>2-4</td>
</tr>
<tr>
<td>3-1</td>
<td>3-2</td>
<td>3-3</td>
<td>3-4</td>
</tr>
</table>
<video src="../resource/video/boxingmantou.mp4" controls autoplay></video>
<audio src="../resource/audio/A1.m4a"controls autoplay></audio>
<header>
<h2>网页头部</h2>
</header>
<section>
<h2>网页主体</h2>
</section>
<footer>
网页脚部
</footer>
<iframe src="//player.bilibili.com/player.html?aid=584744104&bvid=BV1qz4y1Z7SA&cid=236869107&page=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"> </iframe>
<ifream src="www.baidu.com" name="hello" frameborder="0" width="800px" height="800px"></ifream>
<a href="2.基本标签.html" target="hello">点击跳转</a>
<form action="2.基本标签.html" method="get">
<p>名字:<input type="text" name="username"></p>
<p>密码:<input type="password" name="password"></p>
<p>
<input type="submit">
<input type="reset">
</p>
<p>性别:
<input type="radio" value="boy" name="sex"/>男
<input type="radio" value="girl" name="sex"/>女
</p>
<p>爱好:
<input type="checkbox" value="sleep" name="hobby"/>睡觉
<input type="checkbox" value="play" name="hobby"/>玩耍
<input type="checkbox" value="hello" name="hobby"/>你好
<input type="checkbox" value="good" name="hobby"/>好的
</p>
<p>按钮
<input type="button" name="btn1" value="点击变长">
<input type="image" src="../resource/image/111111111.jpg">
</p>
<p>下拉框:
<select name="列表名称" id="">
<option value="China">中国</option>
<option value="USA">美国</option>
<option value="RI" selected>瑞士</option>
</select>
</p>
<p>反馈:
<textarea name="textarea" id="123" cols="30" rows="10">文本内容</textarea>
</p>
<p>文件域:
<input type="file" name="files">
<input type="button" value="上传" name="upload">
</p>
<p>
<input type="email" name="email">
</p>
<p>
<input type="url" name="url">
</p>
<p>数字(商品数量):
<input type="number" name="num" max="100" min="10" step="10">
</p>
<p>音量:
<input type="range" name="voice" min="0"max="100" step="2">
</p>
<p>搜索:
<input type="search" name="search">
</p>
<p>
<label for="mark">你点我试试</label>
<input type="text" id="mark">
</p>
<p>
<input type="text" name="username" placeholder="请输入用户名">
</p>
<p>
<input type="text" name="username" required>
</p>
<p>自定义邮箱
<input type="text" name="diymail" pattern="^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$">
</p>
</form>
</body>
</html>