简单的博客页面模板,并将背景颜色设置为白色:
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: white;
margin: 20px;
font-family: Arial, sans-serif;
}
h1 {
color: #333;
}
p {
color: #555;
}
</style>
</head>
<body>
<h1>我的博客文章</h1>
<h2>文章标题</h2>
<p>文章内容...</p>
</body>
</html>
你可以根据需要修改文章标题和内容部分,并添加更多的文章内容。然后将代码保存为一个名为blog.html
的文件,使用浏览器打开该文件,即可看到一个白底的博客页面。