制作一个html美食网页
时间: 2023-07-03 15:03:32 浏览: 183
HTML 美食网
4星 · 用户满意度95%
好的,以下是一个简单的 HTML 美食网页的示例代码:
```
<!DOCTYPE html>
<html>
<head>
<title>美食网</title>
<meta charset="UTF-8">
<style>
/* 样式表 */
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
}
h1 {
text-align: center;
color: #333;
margin-bottom: 30px;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
border-radius: 5px;
}
.recipe {
margin-bottom: 30px;
padding: 20px;
background-color: #f9f9f9;
border-radius: 5px;
}
.recipe h2 {
margin-top: 0;
margin-bottom: 10px;
font-size: 24px;
color: #333;
}
.recipe img {
max-width: 100%;
height: auto;
margin-bottom: 10px;
}
.recipe p {
margin-bottom: 0;
}
.recipe .ingredients {
margin-bottom: 20px;
}
.recipe .instructions {
margin-bottom: 0;
}
.recipe .instructions ol {
list-style-type: decimal;
margin-left: 20px;
}
.recipe .instructions li {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1>美食网</h1>
<div class="recipe">
<h2>番茄炒蛋</h2>
<img src="https://cdn.pixabay.com/photo/2019/06/02/03/15/tomato-4242037_960_720.jpg" alt="番茄炒蛋">
<p class="ingredients"><strong>食材:</strong>鸡蛋 2 个,番茄 1 个,盐适量,油适量</p>
<p class="instructions"><strong>做法:</strong></p>
<ol>
<li>将鸡蛋打散,加入适量盐搅拌均匀。</li>
<li>将番茄切成小块。</li>
<li>热锅冷油,倒入鸡蛋液煎熟,盛出备用。</li>
<li>再加油烧热,放入番茄翻炒至熟。</li>
<li>将煎好的鸡蛋加入锅中,翻炒均匀,出锅前再加适量盐调味即可。</li>
</ol>
</div>
<div class="recipe">
<h2>红烧鲫鱼</h2>
<img src="https://cdn.pixabay.com/photo/2017/02/17/16/08/fish-2079716_960_720.jpg" alt="红烧鲫鱼">
<p class="ingredients"><strong>食材:</strong>鲫鱼 1 条,生姜 适量,葱 适量,料酒 适量,盐适量,生抽适量,老抽适量,糖适量,清水适量</p>
<p class="instructions"><strong>做法:</strong></p>
<ol>
<li>将鲫鱼去鳞、去内脏、洗净。</li>
<li>生姜切片,葱切段。</li>
<li>热锅加油,放入生姜和葱爆香。</li>
<li>加入料酒,烧开后放入鲫鱼,煎至两面金黄色。</li>
<li>加入清水,淋上生抽和老抽,加入适量盐和糖,煮开后转小火慢慢炖煮。</li>
<li>炖煮至鲫鱼入味,汤汁浓稠即可出锅。</li>
</ol>
</div>
</div>
</body>
</html>
```
这个网页包含了两个美食的介绍,每个美食都有图片、材料和制作步骤。你可以根据需要对样式进行修改,添加更多的美食信息。
阅读全文