dreamweaver网页简单代码
时间: 2024-12-29 22:26:09 浏览: 10
### 使用 Dreamweaver 创建简单网页的 HTML 代码示例
下面是一个简单的 HTML 页面结构,该页面可以使用 Adobe Dreamweaver 来编写和编辑:
```html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>我的第一个网页</title>
<style>
body {
font-family: Arial, sans-serif;
}
header {
background-color: #f8f9fa;
padding: 10px;
text-align: center;
}
nav {
margin-top: 15px;
display: flex;
justify-content: space-around;
}
section {
padding: 20px;
}
footer {
background-color: #e9ecef;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
a {
color: blue;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>欢迎来到我的网站</h1>
</header>
<nav>
<a href="#home">首页</a>
<a href="#about">关于我们</a>
<a href="#contact">联系我们</a>
</nav>
<section id="home">
<h2>首页内容</h2>
<p>这是主页的内容部分。</p>
</section>
<footer>
<p>© 版权所有 2023</p>
</footer>
</body>
</html>
```
此段代码定义了一个基本布局,包含了头部、导航栏、主体以及底部版权信息等内容[^1]。
阅读全文