【简单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: 0;
background-color: #f7f7f7;
}
.header {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
.content {
margin: 20px;
padding: 20px;
}
.footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
position: absolute;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<div class="header">
<h1>欢迎来到我的主页</h1>
</div>
<div class="content">
<h2>个人简历</h2>
<p>这里可以添加个人简历的内容。</p>
<h2>我的爱好</h2>
<p>这里可以添加个人爱好的内容。</p>
<!-- 更多内容 -->
</div>
<div class="footer">
<p>版权所有 © 2023 我的主页</p>
</div>
</body>
</html>
这个示例展示了一个简单的静态个人主页的结构,包括头部(Header)、内容区域(Content)和底部(Footer)。主页的样式是通过内嵌的<style>
标签定义的,你可以根据自己的需求进一步修改和美化。
评论已关闭