dreamweaver个人主页设计
时间: 2023-11-13 22:12:46 浏览: 55
Dreamwever个人主页设计
4星 · 用户满意度95%
首先,打开 Dreamweaver 软件,选择 "New Document" 创建一个新文档。
然后,在页面中添加一些基本的 HTML 结构,如下所示:
```html
<!DOCTYPE html>
<html>
<head>
<title>个人主页</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>我的个人主页</h1>
</header>
<nav>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">关于我</a></li>
<li><a href="#">我的作品</a></li>
<li><a href="#">联系我</a></li>
</ul>
</nav>
<main>
<section>
<h2>欢迎来到我的个人主页</h2>
<p>这里是我的个人主页,我会在这里分享我的一些作品和生活经历。</p>
</section>
<section>
<h2>我的作品</h2>
<ul>
<li><a href="#">作品1</a></li>
<li><a href="#">作品2</a></li>
<li><a href="#">作品3</a></li>
</ul>
</section>
<section>
<h2>联系我</h2>
<form action="#" method="post">
<label for="name">姓名:</label>
<input type="text" id="name" name="name"><br>
<label for="email">邮箱:</label>
<input type="email" id="email" name="email"><br>
<label for="message">留言:</label>
<textarea id="message" name="message"></textarea><br>
<input type="submit" value="发送">
</form>
</section>
</main>
<footer>
<p>版权所有 © 2021</p>
</footer>
</body>
</html>
```
接下来,我们需要创建一个样式表文件 `style.css`,并为页面中的元素添加样式,如下所示:
```css
/* 设置全局样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
}
/* 设置头部样式 */
header {
background-color: #333;
color: #fff;
padding: 20px;
}
header h1 {
font-size: 36px;
}
/* 设置导航菜单样式 */
nav {
background-color: #f2f2f2;
padding: 20px;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
}
nav li {
margin-right: 20px;
}
nav a {
display: block;
padding: 10px;
color: #333;
text-decoration: none;
}
nav a:hover {
background-color: #333;
color: #fff;
}
/* 设置主要内容样式 */
main {
margin: 20px;
}
section {
margin-bottom: 20px;
}
section h2 {
margin-bottom: 10px;
}
section p {
margin-bottom: 20px;
}
section ul {
list-style: none;
margin-bottom: 20px;
}
section li {
margin-bottom: 10px;
}
/* 设置联系表单样式 */
form label {
display: inline-block;
width: 100px;
}
form input,
form textarea {
display: block;
margin-bottom: 10px;
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
form input[type="submit"] {
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
}
```
这样,我们就完成了一个简单的个人主页的设计,可以在浏览器中打开查看效果。当然,还可以根据自己的需求进行调整和优化。
阅读全文