代码:
<!DOCTYPE html>
<html>
<head>
<title>我的简历</title>
<style>
body {
background-image: url('https://picsum.photos/id/1018/1000/1000');
background-size: cover;
background-repeat: no-repeat;
color: white;
padding: 50px;
font-size: 20px;
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
font-size: 40px;
margin-bottom: 30px;
}
img {
border-radius: 50%;
width: 200px;
height: 200px;
margin-bottom: 30px;
}
p {
margin-bottom: 20px;
}
</style>
</head>
<body>
<img src="https://picsum.photos/id/237/200/200">
<h1>我的简历</h1>
<p>姓名:张三</p>
<p>性别:男</p>
<p>出生年月:2001年1月1日</p>
<p>学历:本科</p>
<p>专业: 人工智能</p>
<p>联系电话:12345678900</p>
<p>电子邮件:zhangsan@example.com</p>
</body>
</html>
结果图: