以下是一个英语编辑组稿网站模板的示例,您可以根据需要进行修改和自定义:
```html
编辑组稿
关于我们
这里是关于我们的信息。
我们的团队成立于2016年,致力于提供高质量的英语编辑服务。我们的服务包括英语文章编辑、翻译、校对、排版等。
联系我们
这里是联系我们的信息。
电话:123-456-7890
邮箱:hello@example.com
```
CSS:
```css
/* 样式表 */
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
.logo {
display: flex;
justify-content: center;
align-items: center;
height: 50px;
width: 50px;
font-size: 36px;
margin-right: 20px;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
}
nav li {
display: inline-block;
margin-right: 20px;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px 20px;
font-size: 24px;
}
main {
margin-top: 50px;
}
section {
margin-bottom: 20px;
}
h1 {
margin-bottom: 20px;
font-size: 36px;
font-weight: bold;
}
p {
margin-bottom: 20px;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
```