今日郎溪
今日郎溪是一个提供关于郎溪地区新闻、文化、旅游等各种信息的综合性网站。该网站致力于为用户提供最新的资讯和实用的指南,帮助用户更好地了解和体验郎溪这个美丽的地方。
HTML结构
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>今日郎溪</title>
<!-- 引入CSS文件 -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<!-- 网站头部内容 -->
</header>
<main>
<!-- 网站主要内容 -->
</main>
<footer>
<!-- 网站底部内容 -->
</footer>
</body>
</html>
CSS样式
/*通用样式*/
body {
font-family: "微软雅黑", sans-serif;
line-height: 1.6;
}
a, a:hover, a:active, a:focus, input[type=text], select, button, textarea, label, div > p {
text-decoration: none;
outline: none;
}
.container {
width: 1200px;
margin: auto;
overflow: hidden;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
}
main {
float: left;
width: calc(100% - 400px);
}
aside {
float: right;
width: 400px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
}