<a href="#one" target="_blank">Maps</a>
<img src="https://www.w3school.com.cn/i/eg_tulip.jpg" alt="郁金香">
<img src="img/eg_tulip.jpg" alt="上海鲜花港 - 郁金香" />
<table border="1" cellpadding="2" cellspacing="0" width="500">
<thead>
<tr>
<td>姓名</td>
<td>性别</td>
<td>年龄</td>
</tr>
</thead>
<tbody>
<tr>
<td>张学友</td>
<td>男</td>
<td>33</td>
</tr>
<tr>
<td>郭富城</td>
<td>男</td>
<td>34</td>
</tr>
</tbody>
</table>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<dl>
<dt>计算机</dt>
<dd>用来计算的仪器 ... ...</dd>
<dt>显示器</dt>
<dd>以视觉方式显示信息的装置 ... ...</dd>
</dl>
<form action="index2.html" method="GET">
<div class="a1">
<label for="username">username:</label>
<input type="text" name="username" value="username" maxlength="6" id="username">
</div>
<div class="a1">
<label for="password">password:</label>
<input type="password" name="pwd" value="password" id="password">
</div>
<div class="a1">
sex:
<input type="radio" name="sex" value="man" id="man" checked>
<label for="man">man</label>
<input type="radio" name="sex" value="woman" id="woman">
<label for="woman">woman</label>
</div>
<div class="a1">
hobby:
<input type="checkbox" name="hobby" value="sleep">sleep
<input type="checkbox" name="hobby" value="game">game
</div>
<div class="a1">
provice:
<select name="" id="">
<option value="">shandong</option>
<option value="">jiangxi</option>
<option value="">jiangsu</option>
<option value="" selected>beijing</option>
<option value="">shanghai</option>
</select>
</div>
<div class="a1">
ps:
<textarea name="" id="" cols="40" rows="2">ps</textarea>
</div>
<div class="a1">
upload:
<input type="file" value="file" name="file">
</div>
<div class="a1">
<input type="checkbox" checked>
I agree
</div>
<div></div>
<div class="a1">
<div class="b1">
<input type="button" value="button" class="c1">
<input type="reset" value="reset" class="c1">
<input type="submit" value="submit" class="c1">
</div>
</div>
</form>