以下是一个简单的简约个人网站模板,可以根据自己的需要进行修改:
HTML结构:
```
个人网站
我的网站介绍
这是一个介绍我自己的网站,我会在这里分享我的作品、我的生活、我的思考等等。
我的作品
我的生活
我是一个设计师,我喜欢旅行、阅读、写作和绘画。我希望通过我的网站,分享我的经验和思考,也希望更多的人能够了解我。
我的思考
我是一个思考者,我喜欢思考问题的本质、生命的意义等等。我希望通过我的思考,带给更多的人启发和思考。
```
CSS样式:
```
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
header {
background-color: #007bff;
color: #fff;
padding: 20px;
text-align: center;
}
nav {
background-color: #fff;
padding: 20px;
}
nav ul {
list-style-type: none;
margin: 0;
}
nav ul li {
display: inline-block;
margin-right: 10px;
}
nav ul li a {
color: #007bff;
text-decoration: none;
}
nav ul li a:hover {
background-color: #0069d9;
}
section {
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
article {
margin-bottom: 20px;
}
footer {
background-color: #007bff;
color: #fff;
padding: 20px;
text-align: center;
}
```