Work 1
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<table border="1">
<caption>节日信息表</caption>
<thead>
<tr>
<th width="100">月份</th>
<th width="400">节日</th>
</tr>
</thead>
<tbody>
<tr>
<td>一月</td>
<td colspan="4">
<table>
<p>
<a href="https://baike.baidu.com/item/元旦/137017?fromtitle=元旦节&fromid=11020002&fr=aladdin" target="_blank">元旦</a>
</p>
<p>
<a href="https://baike.baidu.com/item/腊八节/430373?fr=aladdin" target="_blank">腊八节</a>
</p>
</table>
</td>
</tr>
<tr>
<td>二月</td>
<td>
<table>
<p>
<a href="https://baike.baidu.com/item/春节/136876?fr=aladdin" target="_blank">春节</a>
</p>
<p>
<a href="https://baike.baidu.com/item/%E6%83%85%E4%BA%BA%E8%8A%82/30001?fr=aladdin" target="_blank">情人节</a>
</p>
</table>
</td>
</tr>
<tr>
<td>三月</td>
<td>
<table>
<p>
<a href="https://baike.baidu.com/item/国际妇女节/485652?fromtitle=妇女节&fromid=382396&fr=aladdin" target="_blank">妇女节</a>
</p>
<p>
<a href="https://baike.baidu.com/item/植树节/419569?fr=aladdin" target="_blank">植树节</a>
</p>
</table>
</td>
</tr>
<tr>
<td>四月</td>
<td>
<table>
<p>
<a href="https://baike.baidu.com/item/清明节/137575?fromtitle=清明&fromid=34808&fr=aladdin" target="_blank">清明节</a>
</p>
</table>
</td>
</tr>
<tr>
<td>五月</td>
<td>
<table>
<p>
<a href="https://baike.baidu.com/item/五一国际劳动节?fromtitle=劳动节&fromid=128047" target="_blank">劳动节</a>
</p>
<p>
<a href="https://baike.baidu.com/item/五四青年节?fromtitle=青年节&fromid=456321" target="_blank">青年节</a>
</p>
</table>
</td>
</tr>
<tr>
<td>六月</td>
<td>
<table>
<p>
<a href="https://baike.baidu.com/item/国际儿童节?fromtitle=儿童节&fromid=291723" target="_blank">儿童节</a>
</p>
<p>
<a href="https://baike.baidu.com/item/端午节/1054" target="_blank">端午节</a>
</p>
</table>
</td>
</tr>
<tr>
<td>七月</td>
<td>
<table>
<p>
<a href="https://baike.baidu.com/item/世界人口日" target="_blank">世界人口日</a>
</p>
</table>
</td>
</tr>
<tr>
<td>八月</td>
<td>
<table>
<p>
<a href="https://baike.baidu.com/item/立秋/9465" target="_blank">立秋</a>
</p>
<p>
<a href="https://baike.baidu.com/item/七夕节/226647?fromtitle=七夕&fromid=25249" target="_blank">七夕</a>
</p>
</table>
</td>
</tr>
<tr>
<td>九月</td>
<td>
<table>
<p>
<a href="https://baike.baidu.com/item/教师节" target="_blank">教师节</a>
</p>
<p>
<a href="https://baike.baidu.com/item/中秋节/128234?fromtitle=中秋&fromid=182203" target="_blank">中秋节</a>
</p>
</table>
</td>
</tr>
<tr>
<td>十月</td>
<td>
<table>
<p>
<a href="https://baike.baidu.com/item/国庆节" target="_blank">国庆节</a>
</p>
</table>
</td>
</tr>
<tr>
<td>十一月</td>
<td>
<table>
<p>
<a href="https://baike.baidu.com/item/消防宣传日" target="_blank">消防宣传日</a>
</p>
</table>
</td>
</tr>
<tr>
<td>十二月</td>
<td>
<table>
<p>
<a href="https://baike.baidu.com/item/圣诞节/127881" target="_blank">圣诞节</a>
</p>
</table>
</td>
</tr>
</tbody>
</table>
</body>
</html>
Work 2
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<form action="" method="post" enctype="multipart/form-data">
<fieldset>
<legend>Your Details:</legend>
<p>
Name:
<input type="text">
</p>
<p>
Email:
<input type="email">
</p>
</fieldset>
<fieldset>
<legend>Your Rivew:</legend>
<p>
How did you hear about us?
<select>
<option value="">Google</option>
<option value="">Baidu</option>
<option value="">Bing</option>
<option value="">Wechat</option>
</select>
</p>
<p>
Would you visit again?
<p>
<input type="radio" name="opt">Yes
<input type="radio" name="opt">No
<input type="radio" name="opt">Maybe
</p>
</p>
<p>
Comments:
<p>
<textarea rows="6" cols="50"></textarea>
</p>
</p>
<p>
<input type="checkbox">Sign me up for email updates
</p>
<p>
<input type="file" placeholder="Submit review">
</p>
</fieldset>
</form>
</body>
</html>