个人介绍页面 - 了解我的信息
<!DOCTYPE html>
<html>
<head>
	<title>个人介绍页面</title>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<style>
		body {
			font-family: Arial, sans-serif;
			background-color: #f2f2f2;
		}
		h1 {
			text-align: center;
			margin-top: 50px;
		}
		.container {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: center;
			margin: 50px;
		}
		.card {
			background-color: #fff;
			box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
			margin: 20px;
			padding: 20px;
			width: 300px;
		}
		.card img {
			max-width: 100%;
		}
		.card h2 {
			margin-top: 20px;
			font-size: 24px;
			color: #333;
		}
		.card p {
			margin-top: 10px;
			font-size: 16px;
			color: #666;
			line-height: 1.5;
		}
	</style>
</head>
<body>
	<h1>个人介绍</h1>
	<div class="container">
		<div class="card">
			<img src="https://via.placeholder.com/300x300" alt="头像">
			<h2>姓名</h2>
			<p>职业</p>
			<p>自我介绍</p>
		</div>
	</div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lWGC 著作权归作者所有。请勿转载和采集!