(个人简历一)用纯html写个人简历

17 篇文章 0 订阅
13 篇文章 1 订阅

效果

在这里插入图片描述

实现代码

用纯table实现

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>简历</title>
	</head>
	<body>
		<table border="1" cellspacing="0" align="center">
			<tbody>
			<caption><h1>我的简历</h1></caption>
			<tr>
				<td>姓名</td>
				<td>
					<input type="text">
				</td>
				<td>性别</td>
				<td>
					<input type="text">
				</td>
				<td rowspan="4" align="center">
					<img src="img/touxiang.jpg" width="120px" height="150px" alt="头像" title="头像">
				</td>
			</tr>
			<tr>
				<td>名族</td>
				<td>
					<input type="text">
				</td>
				<td>籍贯</td>
				<td>
					<input type="text">
				</td>
			</tr>
			<tr>
				<td>出生日期</td>
				<td>
					<input type="date">
				</td>
				<td>婚姻状况</td>
				<td>
					<input type="text">
				</td>
			</tr>
			<tr>
				<td>学历</td>
				<td>
					<input type="text">
				</td>
				<td>体重身高</td>
				<td>
					<input type="text">
				</td>
			</tr>
			<tr>
				<td>专业</td>
				<td>
					<input type="text">
				</td>
				<td>健康状况</td>
				<td colspan="2">
					<input type="text">
				</td>
			</tr>
			<tr>
				<td>毕业院校</td>
				<td colspan="2">
					<input type="text">
				</td>
				<td>毕业日期</td>
				<td>
					<input type="date">
				</td>
			</tr>
			<tr>
				<td>联系电话</td>
				<td>
					<input type="text">
				</td>
				<td>电子邮箱</td>
				<td colspan="2">
					<input type="text">
				</td>
			</tr>
			<tr>
				<td>主修课程</td>
				<td colspan="4">
					<textarea rows="3" cols="60">
						
					</textarea>
				</td>
			</tr>
			<tr>
				<td>个人技能</td>
				<td colspan="4">
					<textarea rows="5" cols="60">
						
					</textarea>
				</td>
			</tr>
			<tr>
				<td>工作经历</td>
				<td colspan="4">
					<textarea rows="5" cols="60">
						
					</textarea>
				</td>
			</tr>
			<tr>
				<td>兴趣爱好</td>
				<td colspan="4">
					<textarea rows="5" cols="60">
						
					</textarea>
				</td>
			</tr>
			<tr>
				<td>自我评价</td>
				<td colspan="4">
					<textarea rows="5" cols="60">
						
					</textarea>
				</td>
			</tr>
			</tbody>
		</table>
	</body>
</html>

  • 19
    点赞
  • 135
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,以下是一个简单的 HTML 个人简历表单: ```html <!DOCTYPE html> <html> <head> <title>个人简历</title> <style> label { font-weight: bold; display: block; margin-top: 10px; } input[type=text], textarea { padding: 5px; width: 100%; box-sizing: border-box; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 4px; } input[type=submit] { background-color: #4CAF50; color: white; padding: 10px 15px; border: none; border-radius: 4px; cursor: pointer; font-size: 18px; } input[type=submit]:hover { background-color: #45a049; } </style> </head> <body> <h1>个人简历</h1> <form action="#" method="post"> <label for="name">姓名</label> <input type="text" id="name" name="name" required> <label for="email">电子邮件</label> <input type="email" id="email" name="email" required> <label for="phone">电话</label> <input type="tel" id="phone" name="phone" required> <label for="address">地址</label> <input type="text" id="address" name="address" required> <label for="objective">求职意向</label> <textarea id="objective" name="objective" rows="4" required></textarea> <label for="education">教育背景</label> <textarea id="education" name="education" rows="4" required></textarea> <label for="skills">技能</label> <textarea id="skills" name="skills" rows="4" required></textarea> <label for="experience">工作经历</label> <textarea id="experience" name="experience" rows="4" required></textarea> <input type="submit" value="提交"> </form> </body> </html> ``` 注意,这只是一个简单的表单,你可以按照自己的需要进行修改和扩展。同时,提交表单后的数据需要用后端语言进行处理,并将其存储到数据库中。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值