用代码写个人简历的练习
作者:互联网
用代码写个人简历的练习
课堂练习
2021/4/5
<!DOCTYPE html>
<html>
<head>
<metacharset="utf-8"/>
<title>个人简历</title>
</head>
<body>
<video SRC="12.mp4" type="video/mp4" controls="controls" loop="-1" poster="12.jpg" whidth=230rpx height=270rpx></video>
<table border=3 bordercolor="#4c8dae" background="111.jpg" >
<caption><font size="12" color="#4c8dae">个人简历</font></caption>
<tr><caption><th rowspan="5"><img src="21.jpg",whidth=270rpx height=230rpx></th></tr>
<tr><th colspan="2">姓名:</th>
<td colspan="2">xx</td>
<th colspan="2"> 性别:</th>
<td colspan="2" >xx</td>
</tr>
<tr>
<th colspan="2">生日:</th>
<td colspan="2"> xx年xx月xx日 ></td>
<th colspan="2"> 星座:</th>
<td colspan="2" >天秤座</td>
</tr>
<tr><th colspan="2">体重:</th>
<td colspan="2"> xx</td>
<th colspan="2">身高:</th>
<td colspan="2" >xx</td>
</tr>
<tr><th colspan="8"><font color="#FFE1FF">求职意向</font></th>
<tr><td colspan="8"><p>xxxxxxxxxx</p></td>
<tr><th colspan="8"><font color="#FFE1FF">特长技能</font></td>
<tr><td colspan="8"><p>xxxxxxxxxxx</p<p>xxxxxxxxxxxxxxxx</p>
</td>
</table>
</body>
</html>
因为是刚学的所以很多代码都不是简化的,有点繁琐
<video SRC="12.mp4" type="video/mp4" controls="controls" loop="-1" poster="12.jpg" whidth=230rpx height=270rpx></video>
这里的SRC="12.mp4"是视频文件的名字,poster="12.jpg"是视频封面图片的名字。 whidth=230rpx height=270rpx是封面图片的大小可加可不加。
<tr><caption><th rowspan="5"><img src="21.jpg",whidth=270rpx height=230rpx></th></tr>
这里的照片是简历上的头像src="21.jpg是图片的名字。
<tr><th colspan="8"><font color="#FFE1FF">求职意向</font></th>
这里的 font color="#FFE1FF" 是字体的颜色可以用英文或16进制表示,我用的颜色是这样的。
后面也可以适当地添加表格。
标签:12,求职意向,个人简历,代码,练习,jpg,xx 来源: https://blog.csdn.net/qq_47898686/article/details/115445808