汽车行业网站 - 汽车资讯、车型介绍、论坛社区
<!DOCTYPE html>
<html>
<head>
<title>汽车行业网站</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #005a9c;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
font-size: 30px;
margin: 0;
}
nav {
background-color: #f1f1f1;
padding: 10px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
nav li {
float: left;
}
nav li a {
display: block;
color: #333;
text-align: center;
padding: 10px;
text-decoration: none;
}
nav li a:hover {
background-color: #ddd;
}
section {
padding: 20px;
margin: 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
article {
background-color: #f1f1f1;
padding: 10px;
margin-bottom: 20px;
width: 30%;
flex-basis: 30%;
}
article img {
max-width: 100%;
height: auto;
}
article h2 {
font-size: 20px;
margin: 10px 0;
}
article p {
font-size: 14px;
line-height: 1.5;
margin: 10px 0;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
</style>
</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>
<li><a href="#">联系我们</a></li>
</ul>
</nav>
<section>
<article>
<img src="https://via.placeholder.com/300x200" alt="车型图片">
<h2>车型名称</h2>
<p>车型描述</p>
</article>
<article>
<img src="https://via.placeholder.com/300x200" alt="车型图片">
<h2>车型名称</h2>
<p>车型描述</p>
</article>
<article>
<img src="https://via.placeholder.com/300x200" alt="车型图片">
<h2>车型名称</h2>
<p>车型描述</p>
</article>
<article>
<img src="https://via.placeholder.com/300x200" alt="车型图片">
<h2>车型名称</h2>
<p>车型描述</p>
</article>
<article>
<img src="https://via.placeholder.com/300x200" alt="车型图片">
<h2>车型名称</h2>
<p>车型描述</p>
</article>
<article>
<img src="https://via.placeholder.com/300x200" alt="车型图片">
<h2>车型名称</h2>
<p>车型描述</p>
</article>
</section>
<footer>
<p>版权所有 © 汽车行业网站</p>
</footer>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lplv 著作权归作者所有。请勿转载和采集!