html5实现好看的个人博客模板源码
以下是一个简单的HTML5个人博客模板示例,包含了基础的结构和样式:
<!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;
}
.header {
text-align: center;
padding: 20px;
}
.header img {
width: 100px;
height: 100px;
border-radius: 50%;
margin: auto;
display: block;
}
.navigation {
text-align: center;
padding: 10px;
}
.navigation a {
color: #333;
text-decoration: none;
padding: 5px 10px;
border: 1px solid transparent;
margin: 0 5px;
}
.navigation a:hover {
border-color: #555;
background-color: #ddd;
}
.main {
margin: 0 auto;
max-width: 700px;
padding: 20px;
}
.post {
margin-bottom: 50px;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
}
.post h2 {
margin-bottom: 0;
}
.post p {
margin-top: 10px;
}
.footer {
text-align: center;
padding: 20px;
color: #666;
}
</style>
</head>
<body>
<div class="header">
<img src="profile.jpg" alt="个人头像">
<h1>个人博客</h1>
</div>
<div class="navigation">
<a href="#">首页</a>
<a href="#">关于</a>
<a href="#">联系</a>
</div>
<div class="main">
<div class="post">
<h2>这是博客标题</h2>
<p>这里是博客内容...</p>
</div>
<!-- 其他博客帖子 -->
</div>
<div class="footer">
<p>© 2023 个人博客</p>
</div>
</body>
</html>
这个模板包括了一个简单的头部(Header),导航(Navigation),主要内容区域(Main),和底部信息(Footer)。样式是内联的,可以根据需要进行调整以适应个人风格。图片和文本内容都可以根据实际情况进行修改。这个模板是一个基本的示例,可以作为创建更复杂博客模板的起点。
评论已关闭