<!DOCTYPE html>
<html lang="zh-CN">
<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: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: white;
padding: 10px 0;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #444;
}
nav a {
color: white;
padding: 14px 20px;
text-decoration: none;
text-align: center;
}
nav a:hover {
background-color: #ddd;
color: black;
}
section {
padding: 20px;
margin: 20px;
background-color: white;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>欢迎来到我的网站</h1>
</header>
<nav>
<a href="#home">首页</a>
<a href="#services">服务</a>
<a href="#about">关于我们</a>
<a href="#contact">联系我们</a>
</nav>
<section>
<h2>这是一个简单的网页设计模板</h2>
<p>这个模板包括了头部、导航栏、内容区和页脚。你可以根据需要修改样式和内容。</p>
</section>
<footer>
<p>© 2023 我的公司. 保留所有权利.</p>
</footer>
</body>
</html>
HTML结构:
<!DOCTYPE html>
:声明文档类型为HTML5。<html lang="zh-CN">
:指定页面语言为简体中文。<head>
:包含元数据、标题和样式。<body>
:页面的主要内容。CSS样式:
<style>
) 来定义页面的基本样式,包括字体、颜色、布局等。header
:定义页面顶部的标题区域。nav
:定义导航栏,使用Flexbox布局使其居中显示。section
:定义主要内容区域。footer
:定义页面底部的版权信息,并固定在页面底部。页面元素:
header
包含一个标题 (<h1>
)。nav
包含四个链接 (<a>
),用于导航到不同的页面部分。section
包含一段介绍文本。footer
包含版权信息。这个模板是一个非常基础的HTML页面,适合初学者学习和修改。
上一篇:html2canvas
下一篇:html导航栏
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站