写一个关于美食的响应式网站html+css
时间: 2023-12-28 16:05:39 浏览: 179
好的,以下是一个简单的关于美食的响应式网站的HTML和CSS代码示例,仅供参考:
HTML代码:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>美食网站</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>美食网站</h1>
<nav>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">菜谱分类</a></li>
<li><a href="#">最新菜谱</a></li>
<li><a href="#">我的收藏</a></li>
</ul>
</nav>
</header>
<main>
<section class="banner">
<h2>今日推荐</h2>
<p>这里是今日推荐的菜品介绍</p>
<a href="#">查看详情</a>
</section>
<section class="categories">
<h2>菜品分类</h2>
<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>
</section>
<section class="recipes">
<h2>最新菜谱</h2>
<ul>
<li>
<a href="#">
<img src="images/recipe1.jpg" alt="菜品1">
<h3>菜品名称1</h3>
<p>制作难度:初级</p>
<p>制作时间:30分钟</p>
</a>
</li>
<li>
<a href="#">
<img src="images/recipe2.jpg" alt="菜品2">
<h3>菜品名称2</h3>
<p>制作难度:中级</p>
<p>制作时间:1小时</p>
</a>
</li>
<li>
<a href="#">
<img src="images/recipe3.jpg" alt="菜品3">
<h3>菜品名称3</h3>
<p>制作难度:高级</p>
<p>制作时间:2小时</p>
</a>
</li>
</ul>
</section>
</main>
<footer>
<p>版权信息</p>
</footer>
</body>
</html>
```
CSS代码:
```css
/* 全局样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
}
/* 头部样式 */
header {
background-color: #fff;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 36px;
font-weight: bold;
}
nav ul {
list-style: none;
display: flex;
}
nav li + li {
margin-left: 20px;
}
nav a {
color: #333;
text-decoration: none;
font-size: 18px;
font-weight: bold;
}
/* 主体样式 */
main {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.banner {
background-image: url(images/banner.jpg);
background-size: cover;
background-position: center;
height: 400px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #fff;
text-align: center;
}
.banner h2 {
font-size: 48px;
font-weight: bold;
margin-bottom: 20px;
}
.banner p {
font-size: 24px;
margin-bottom: 40px;
}
.banner a {
background-color: #ff6600;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
font-size: 18px;
}
.categories {
margin-top: 40px;
}
.categories h2 {
font-size: 36px;
font-weight: bold;
margin-bottom: 20px;
}
.categories ul {
list-style: none;
display: flex;
flex-wrap: wrap;
}
.categories li + li {
margin-top: 20px;
margin-left: 20px;
}
.categories a {
background-color: #fff;
color: #333;
padding: 10px 20px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 18px;
}
.recipes {
margin-top: 40px;
}
.recipes h2 {
font-size: 36px;
font-weight: bold;
margin-bottom: 20px;
}
.recipes ul {
list-style: none;
display: flex;
flex-wrap: wrap;
}
.recipes li {
width: calc(100% / 3 - 20px);
margin-right: 20px;
margin-bottom: 20px;
}
.recipes li:last-child {
margin-right: 0;
}
.recipes a {
display: block;
background-color: #fff;
color: #333;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
border-radius: 5px;
font-size: 18px;
}
.recipes img {
max-width: 100%;
margin-bottom: 10px;
}
/* 通用响应式样式 */
@media screen and (max-width: 768px) {
.banner {
height: 200px;
}
.banner h2 {
font-size: 36px;
}
.banner p {
font-size: 18px;
margin-bottom: 20px;
}
.banner a {
font-size: 16px;
padding: 5px 10px;
}
.categories h2 {
font-size: 24px;
}
.categories li + li {
margin-left: 10px;
margin-top: 10px;
}
.categories a {
font-size: 16px;
padding: 5px 10px;
}
.recipes h2 {
font-size: 24px;
}
.recipes li {
width: calc(100% / 2 - 10px);
margin-right: 10px;
margin-bottom: 10px;
}
.recipes a {
font-size: 16px;
padding: 10px;
}
footer {
font-size: 14px;
text-align: center;
padding: 10px;
}
}
@media screen and (max-width: 480px) {
.categories li {
width: calc(100% / 2 - 10px);
margin-right: 10px;
margin-bottom: 10px;
}
.recipes li {
width: 100%;
margin-right: 0;
margin-bottom: 10px;
}
.recipes a {
font-size: 14px;
padding: 5px;
}
footer {
font-size: 12px;
padding: 5px;
}
}
```
以上代码只是一个简单的示例,实际开发中可能需要更多的CSS样式以及JavaScript交互效果。同时,也需要使用图片等资源来丰富网站内容。
阅读全文