作业分析
本次作业要使用table表格标签编写如下的效果
代码实现
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>lesson 04 homework</title>
</head>
<body>
<table border="1"
width="800"
align="center"
cellspacing="0"
cellpadding="0"
>
<tr>
<th colspan="4"bgcolor="green">王者荣耀英雄简介</th>
</tr>
<tr>
<th width="80">英雄</th>
<th width="80">分路</th>
<th width="100">图片</th>
<th>经典台词</th>
</tr>
<tr height="150">
<td>百里守约</td>
<td>射手</td>
<td>
<a href="https://baike.baidu.com/item/%E7%99%BE%E9%87%8C%E5%AE%88%E7%BA%A6/21511500#:~:text=%E6%89%8B%E6%B8%B8%E3%80%8A%E7%8E%8B%E8%80%85%E8%8D%A3%E8%80%80%E3%80%8B%E4%B8%AD%E7%9A%84%E8%8B%B1%E9%9B%84%E8%A7%92%E8%89%B2%E7%99%BE%E9%87%8C%E5%AE%88%E7%BA%A6%EF%BC%8C%E6%98%AF%E8%85%BE%E8%AE%AF%E6%89%8B%E6%B8%B8%E3%80%8A%E7%8E%8B%E8%80%85%E8%8D%A3%E8%80%80%E3%80%8B%E7%9A%84%E4%B8%80%E4%BD%8D%E5%B0%84%E6%89%8B%E5%9E%8B%E8%8B%B1%E9%9B%84%E8%A7%92%E8%89%B2%EF%BC%8C2017%E5%B9%B48%E6%9C%888%E6%97%A5%E4%BA%8E%E6%B8%B8%E6%88%8F%E6%AD%A3%E5%BC%8F%E6%9C%8D%E4%B8%8A%E7%BA%BF"target="blank">
<img src="https://gd-hbimg.huaban.com/97f529f006e82e30157c2f473a4a7d8b880672ad1074d-oX5EqE_fw1200" width="150px"height="auto">
</a>
</td>
<td>
1.无论何时何地,都会遵守约定。
2.关于取下敌人性命这件事,也从不失约。
3.给我一个目标,还你一片寂静。
</td>
</tr>
<tr height="150">
<td>韩信</td>
<td>打野</td>
<td>
<a href="https://baike.baidu.com/item/%E9%9F%A9%E4%BF%A1/18781715?fromModule=search-result_lemma"target="blank">
<img src="https://img2.baidu.com/it/u=653835299,3976080085&fm=253&fmt=auto&app=138&f=JPEG?w=800&h=1572" width="150px"height="auto">
</a>
</td>
<td>
1.纵情山河万里,肆意九州五岳。
2.到达胜利之前,无法回头。
3.管他世情冷眼,不向此间低眉。
</td>
</tr>
<tr height="150">
<td>马超</td>
<td>对抗</td>
<td>
<a href="https://baike.baidu.com/item/%E9%A9%AC%E8%B6%85/23243211?fromModule=search-result_lemma"target="blank">
<img src="https://q2.itc.cn/images01/20240202/6b60f9525b9541288352219070738313.jpeg" width="150px"height="auto"></td>
</a>
<td>
1.不必辨认我,认识我的枪吧
2.西凉锦马超在此,快来共决生死!
3.乱世之中,我来彰显威名!
</td>
</tr>
<tr height="150">
<td>干将莫邪</td>
<td>法师</td>
<td>
<a href="https://baike.baidu.com/item/%E5%B9%B2%E5%B0%86%E8%8E%AB%E9%82%AA/20596271?fr=ge_ala"target="blank">
<img src="https://pics0.baidu.com/feed/34fae6cd7b899e51aaaa04bdb2d79c3ec9950df4.jpeg?token=9f123d729069d78c8ad428252936c2fb"
width="150px"height="auto" >
</a>
</td>
<td>
1.干将:这一剑,把握有几成;莫邪:九成。
2.干将:历史记载胜者;莫邪:并一道埋掉血色。
3.干将:铁马金戈;莫邪:青冢陌路。
</td>
</tr>
<tr height="150">
<td>鬼谷子</td>
<td>辅助</td>
<td>
<a href="https://baike.baidu.com/item/%E9%AC%BC%E8%B0%B7%E5%AD%90/20313351?fromModule=search-result_lemma"target="blank">
<img src="https://pic.rmb.bdstatic.com/bjh/240121/a9808379f89e5aa01d25b493bd68fe6a4139.jpeg@h_1280"
width="150px"height="auto" >
</a>
</td>
<td>
1.理解世界,而非享受它。
2.名为世外高人,实乃异类。
3.沉沦的心,依旧为天空和大地跳动。
</td>
</tr>
</table>
</body>
</html>
个人总结
很不错