<!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;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
/* 头部样式 */
header {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 10px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
nav ul li a.active {
font-weight: bold;
}
/* 内容区域样式 */
.content-section {
padding: 20px;
margin: 15px 0;
background-color: #fff;
}
/* 页脚样式 */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: absolute;
bottom: 0;
width: 100%;
}
/* 图片样式 */
img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
/* 链接悬停效果 */
a:hover {
color: #007bff;
}
/* 响应式设计 */
@media (max-width: 768px) {
header, nav, section, footer {
padding: 10px;
}
}
</style>
</head>
<body>
<header>
<h1>我的网站</h1>
<nav>
<ul>
<li><a href="#home" class="active">首页</a></li>
<li><a href="#about">关于我们</a></li>
<li><a href="#contact">联系我们</a></li>
</ul>
</nav>
</header>
<section id="home" class="content-section">
<h2>欢迎来到我的网站</h2>
<p>这是一个复杂的样式示例页面,展示了如何使用CSS来美化网页。</p>
<img src="666.jpg" alt="示例图片">
</section>
<section id="about" class="content-section">
<h2>关于我们</h2>
<p>这里可以放置关于我们的信息。</p>
</section>
<section id="contact" class="content-section">
<h2>联系我们</h2>
<p>如果您有任何问题,请通过以下方式联系我们。</p>
</section>
<footer>
<p>版权所有 © 2023 我的网站</p>
</footer>
</body>
</html>