用js写一个汤类介绍网页
时间: 2023-07-15 08:15:45 浏览: 152
好的,以下是一个简单的汤类介绍网页的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>汤类介绍</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
}
header {
background-color: #ffffff;
padding: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
text-align: center;
}
h1 {
font-size: 36px;
color: #333333;
margin: 0;
}
main {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h2 {
font-size: 24px;
color: #333333;
margin-top: 0;
}
p {
font-size: 16px;
color: #555555;
line-height: 1.5;
margin: 0 0 10px 0;
}
img {
max-width: 100%;
height: auto;
margin: 20px 0;
}
ul {
list-style: disc;
margin: 0 0 10px 20px;
padding: 0;
}
li {
font-size: 16px;
color: #555555;
line-height: 1.5;
}
footer {
background-color: #333333;
color: #ffffff;
padding: 20px;
text-align: center;
}
a {
color: #ff6600;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>汤类介绍</h1>
</header>
<main>
<h2>什么是汤?</h2>
<p>汤是一种由各种食材熬制而成的热饮料,通常会加入肉类、蔬菜、豆腐、海鲜等食材,以增加营养丰富度和口感美味度。</p>
<img src="https://picsum.photos/800/400">
<h2>汤的分类</h2>
<ul>
<li><strong>清汤:</strong>以清水为基础,加入骨头、肉类等煮成的汤。</li>
<li><strong>浓汤:</strong>以牛奶、鲜奶油、芝士等为基础,加入蔬菜、海鲜等煮成的汤。</li>
<li><strong>羹汤:</strong>以淀粉为基础,加入蔬菜、鸡蛋等煮成的汤,口感浓稠。</li>
<li><strong>海鲜汤:</strong>以海鲜为主料,加入蔬菜、豆腐等煮成的汤,鲜美可口。</li>
</ul>
<h2>汤的营养价值</h2>
<p>汤含有丰富的蛋白质、氨基酸、维生素、矿物质等营养成分,有助于提高免疫力、加强体质、促进消化等作用。</p>
</main>
<footer>
<p>本网页仅供参考,更多汤类食谱请访问<a href="https://www.meishij.net">美食杰</a>。</p>
</footer>
</body>
</html>
```
这段代码使用了 HTML 和 CSS 进行页面布局和样式设计,其中包括了标题、正文、图片、列表等元素,最后还添加了一个页脚链接。你可以根据需要进行修改和扩展。
阅读全文