以下是一个简单的实体材料目录网站模板,你可以根据自己的需要进行修改:
```html
材料目录网站
```
CSS样式表:
```css
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
header {
background-color: #1a1a1a;
color: #fff;
padding: 20px;
text-align: center;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
margin-right: 10px;
}
nav a {
color: #1a1a1a;
text-decoration: none;
}
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
section {
margin-bottom: 100px;
}
.分类目录 h2 {
margin-bottom: 20px;
}
.供应商目录 h2 {
margin-bottom: 20px;
}
.产品目录 h2 {
margin-bottom: 20px;
}
```