一、标题、div、span、p、br、a、img、textarea标签
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>我是标题</title>
</head>
<body>
<h1>jamie</h1>
<h2>jamie</h2>
<h3>jamie</h3>
<h4>jamie</h4>
<h5>jamie</h5>
<h6>jamie</h6>
<div>这是div标签</div>
<span>这是span标签</span>
<p>这是关于Chrome浏览器的介绍:Chrome浏览器是google旗下的浏览器。
Chrome浏览器至发布以来一直讲究简洁、快速、安全,所以Chrome浏览器到现在一直受人追捧。
最开始Chrome采用webkit作为浏览器内核,直到2013年,google宣布不再使用苹果的webkit内核,
开始使用webkit的分支内核Blink。</p>
<p>这是关于Chrome浏览器的介绍:Chrome浏览器是google旗下的浏览器。
Chrome浏览器至发布以来一直讲究简洁、快速、安全,所以Chrome浏览器到现在一直受人追捧。
最开始Chrome采用webkit作为浏览器内核,直到2013年,google宣布不再使用苹果的webkit内核,
开始使用webkit的分支内核Blink。</p>
<br>
<br>
<a href="https://www.baidu.com">百度</a>
<a href="https://www.baidu.com" target="_blank" style="text-decoration: none ">百度</a>
<img src="tubiao.ico">
<img src="tubiao.ico" alt="这是图片" title="logo">
</body>
</html>
<textarea name="content">这是textarea的内容</textarea>
二、input标签
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>我是标题</title>
</head>
<body>
<input type="text" name="" value="请输入用户名">
<input type="text" name="" placeholder="请输入用户名">
<input type="text" name="username" placeholder="请输入用户名">
<input type="password" name="password">
<input type="file" name="file"/>
<input type="checkbox" name="" checked="checked">
<input type="radio" name="">
<div>
<span>男</span> <input type="radio" name="sex">
</div>
<div>
<span>女</span> <input type="radio" name="sex">
</div>
<form action="s.html" method="post">
<input type="button" value="增加">
<input type="submit" value="提交">
<input type="text" value="已经被重置了">
<input type="reset">
</form>
<label for="i1">用户名:</label>
<input id="i1" placeholder="请输入用户名" name="username" type="text">
</body>
</html>

三、select、列表、表格标签
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>我是标题</title>
</head>
<body>
<select name="city" size="1" multiple="multiple">
<option value="1">北京</option>
<option value="2" selected="selected">河南</option>
<option value="3">河北</option>
</select>
<select>
<optgroup label="黑龙江">
<option>牡丹江</option>
<option>哈尔滨</option>
<option>鸡西</option>
</optgroup>
<optgroup label="河北">
<option>保定</option>
<option>石家庄</option>
<option>廊坊</option>
</optgroup>
</select>
<ul>
<li>用例名称</li>
<li>用例方法</li>
<li>返回参数</li>
</ul>
<ol>
<li>用例名称</li>
<li>用例方法</li>
<li>返回参数</li>
</ol>
<dl>
<dt>黑龙江</dt>
<dd>牡丹江</dd>
</dl>
<dl>
<dt>河北</dt>
<dd>保定</dd>
</dl>
<table border="1">
<thead>
<tr>
<th>id</th>
<th>caseName</th>
<th>Method</th>
<th colspan="2">操作</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td rowspan="3">抽奖</td>
<td>post</td>
<td>编辑</td>
<td>删除</td>
</tr>
<tr>
<td>2</td>
<td>post</td>
<td>编辑</td>
<td>删除</td>
</tr>
<tr>
<td>3</td>
<td>post</td>
<td>编辑</td>
<td>删除</td>
</tr>
</body>
</html>

四、比较重要的标签
- 出场率最高的标签:div标签;
- form与input联用;
- select标签;