【HTML】打造你的网络名片:制作一个简单的HTML个人网页
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>我的网络名片</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f7f7f7;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.card {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.card-header {
text-align: center;
padding-bottom: 10px;
}
.card-header img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
}
.card-body {
text-align: center;
padding-top: 10px;
}
</style>
</head>
<body>
<div class="card">
<div class="card-header">
<img src="https://www.example.com/path/to/profile-picture.jpg" alt="Profile Picture">
<h2>张三</h2>
</div>
<div class="card-body">
<p>职位:软件工程师</p>
<p>电话:1234567890</p>
<p>邮箱:zhangsan@example.com</p>
<p>地址:北京市朝阳区</p>
</div>
</div>
</body>
</html>
这段代码展示了如何使用HTML和内嵌CSS创建一个简单的网络名片。它包括了一个带有头像和简单信息的个人资料卡。这个示例可以作为开始构建更复杂个人网页的起点。
评论已关闭