用html css javascript来写一个美食介绍网页
时间: 2023-10-05 10:04:59 浏览: 105
html美食网站网页设计源码.zip
好的,以下是一个简单的美食介绍网页的代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>美食介绍</title>
<meta charset="UTF-8">
<style type="text/css">
body {
background-color: #f6f6f6;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
h1 {
text-align: center;
color: #ff6600;
margin-top: 50px;
}
.container {
width: 80%;
margin: 0 auto;
padding: 50px 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.card {
background-color: #fff;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
margin-bottom: 30px;
width: calc(33.33% - 20px);
padding: 20px;
box-sizing: border-box;
border-radius: 5px;
}
.card img {
max-width: 100%;
height: auto;
margin-bottom: 20px;
}
.card h2 {
font-size: 24px;
color: #333;
margin-bottom: 10px;
}
.card p {
font-size: 16px;
color: #666;
line-height: 1.5;
margin-bottom: 20px;
}
.card a {
display: block;
background-color: #ff6600;
color: #fff;
text-align: center;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s ease;
}
.card a:hover {
background-color: #ff9933;
}
</style>
</head>
<body>
<h1>美食介绍网页</h1>
<div class="container">
<div class="card">
<img src="https://cdn.pixabay.com/photo/2016/11/23/14/31/pexels-photo-1284308.jpeg" alt="美食图片">
<h2>麻辣烫</h2>
<p>麻辣烫是一种源于重庆的小吃,以火锅底料为基础,加入各种蔬菜、豆腐、肉类等食材煮熟而成。味道十分鲜香辣口,深受年轻人的喜爱。</p>
<a href="#">了解更多</a>
</div>
<div class="card">
<img src="https://cdn.pixabay.com/photo/2017/01/20/15/06/cookie-1996885_960_720.jpg" alt="美食图片">
<h2>曲奇饼干</h2>
<p>曲奇饼干是一种西式小点心,由面粉、糖和黄油制成,口感脆嫩香甜,非常适合与茶或咖啡一起享用。现在已经成为各种场合的必备零食之一。</p>
<a href="#">了解更多</a>
</div>
<div class="card">
<img src="https://cdn.pixabay.com/photo/2017/03/27/16/50/coffee-2170230_960_720.jpg" alt="美食图片">
<h2>意式浓缩咖啡</h2>
<p>意式浓缩咖啡是一种以浓郁的咖啡香气和独特的口感而著称的咖啡。它的制作方法非常独特,需要使用特殊的咖啡机和咖啡豆,所以价格相对较高,但是其独特的口感吸引了众多咖啡爱好者。</p>
<a href="#">了解更多</a>
</div>
</div>
</body>
</html>
```
代码解释:
- HTML 部分:包括一个页面标题、一个页面主标题、一个容器以及三个卡片;
- CSS 部分:设置了页面的背景色、字体、页面标题和卡片的样式,包括边框、阴影、圆角、内边距、颜色等;
- JavaScript 部分:本例中没有使用 JavaScript。
效果如下:
![美食介绍网页](https://i.loli.net/2021/09/30/3gnrTYWtca7X8bM.png)
阅读全文