前端:HTML百度页面制作(快速简单)
要使用HTML快速简单地制作一个模拟的百度首页,你可以参考以下代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>模拟百度首页</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
}
.header {
height: 88px;
background-color: #f0f0f0;
border-bottom: 1px solid #d8d8d8;
}
.content {
margin: 20px 20px 0;
min-height: calc(100% - 88px - 100px);
}
.footer {
height: 100px;
background-color: #f0f0f0;
border-top: 1px solid #d8d8d8;
}
</style>
</head>
<body>
<div class="header">
<!-- 这里放置头部内容 -->
</div>
<div class="content">
<!-- 这里放置主体内容 -->
</div>
<div class="footer">
<!-- 这里放置底部内容 -->
</div>
</body>
</html>
这个简易的HTML页面包含了一个模拟的头部(header)、内容区域(content)和底部(footer)。你可以根据需要添加更多的HTML元素和CSS样式来完善页面的布局和设计。
评论已关闭