<!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;
			background-color: #f5f5f5;
		}
<pre><code>	header {
		background-color: #cc0000;
		color: #fff;
		padding: 20px;
		text-align: center;
	}

	h1 {
		margin: 0;
		font-size: 36px;
		font-weight: normal;
	}

	nav {
		background-color: #333;
		color: #fff;
		padding: 10px;
		text-align: center;
		position: sticky;
		top: 0;
	}

	nav a {
		color: #fff;
		text-decoration: none;
		margin: 0 10px;
		font-size: 20px;
	}

	nav a:hover {
		color: #cc0000;
	}

	section {
		margin: 20px;
		padding: 20px;
		background-color: #fff;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	}

	h2 {
		font-size: 24px;
		font-weight: normal;
		margin: 0 0 10px 0;
	}

	p {
		font-size: 18px;
		line-height: 1.5;
		margin: 0;
		padding: 0;
	}

	ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	li {
		margin: 0;
		padding: 10px 0;
		border-bottom: 1px solid #ccc;
		display: flex;
		align-items: center;
	}

	li:last-child {
		border-bottom: none;
	}

	li img {
		margin-right: 10px;
		max-width: 100%;
		height: 100px;
		object-fit: cover;
	}

	li h3 {
		margin: 0;
		font-size: 20px;
		font-weight: normal;
	}

	li p {
		margin: 0;
		font-size: 16px;
		color: #666;
	}

	footer {
		background-color: #333;
		color: #fff;
		padding: 20px;
		text-align: center;
	}

	@media (max-width: 767px) {
		h1 {
			font-size: 24px;
		}

		nav {
			padding: 5px;
		}

		nav a {
			font-size: 16px;
		}

		li {
			flex-direction: column;
			align-items: flex-start;
			padding: 20px 0;
		}

		li img {
			height: auto;
			width: 100%;
			max-width: none;
			margin-bottom: 10px;
		}

		li h3 {
			font-size: 18px;
		}

		li p {
			font-size: 14px;
		}
	}
&lt;/style&gt;
</code></pre>
</head>
<body>
	<header>
		<h1>中国美食介绍 - 品味中华美食文化</h1>
	</header>
<pre><code>&lt;nav&gt;
	&lt;a href=&quot;#north&quot;&gt;北方菜系&lt;/a&gt;
	&lt;a href=&quot;#south&quot;&gt;南方菜系&lt;/a&gt;
	&lt;a href=&quot;#east&quot;&gt;东方菜系&lt;/a&gt;
	&lt;a href=&quot;#west&quot;&gt;西方菜系&lt;/a&gt;
&lt;/nav&gt;

&lt;section id=&quot;north&quot;&gt;
	&lt;h2&gt;北方菜系&lt;/h2&gt;
	&lt;ul&gt;
		&lt;li&gt;
			&lt;img src=&quot;https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=500&amp;q=60&quot; alt=&quot;烤鸭&quot;&gt;
			&lt;div&gt;
				&lt;h3&gt;烤鸭&lt;/h3&gt;
				&lt;p&gt;烤鸭是北京菜系的代表,有着悠久的历史和深厚的文化底蕴。&lt;/p&gt;
			&lt;/div&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;img src=&quot;https://images.unsplash.com/photo-1607979647252-6af7d5e1a5c9?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=500&amp;q=60&quot; alt=&quot;狮子头&quot;&gt;
			&lt;div&gt;
				&lt;h3&gt;狮子头&lt;/h3&gt;
				&lt;p&gt;狮子头是江苏菜系的代表,是一道地道的家常菜。&lt;/p&gt;
			&lt;/div&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;img src=&quot;https://images.unsplash.com/photo-1540574182338-6e986c31d4a2?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=500&amp;q=60&quot; alt=&quot;锅包肉&quot;&gt;
			&lt;div&gt;
				&lt;h3&gt;锅包肉&lt;/h3&gt;
				&lt;p&gt;锅包肉是东北菜系的代表,色香味俱佳,令人垂涎欲滴。&lt;/p&gt;
			&lt;/div&gt;
		&lt;/li&gt;
	&lt;/ul&gt;
&lt;/section&gt;

&lt;section id=&quot;south&quot;&gt;
	&lt;h2&gt;南方菜系&lt;/h2&gt;
	&lt;ul&gt;
		&lt;li&gt;
			&lt;img src=&quot;https://images.unsplash.com/photo-1608378918556-1b9e7e8d90b6?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=500&amp;q=60&quot; alt=&quot;小龙虾&quot;&gt;
			&lt;div&gt;
				&lt;h3&gt;小龙虾&lt;/h3&gt;
				&lt;p&gt;小龙虾是长江流域菜系的代表,是江南地区的特色美食。&lt;/p&gt;
			&lt;/div&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;img src=&quot;https://images.unsplash.com/photo-1566138683710-9c9f8e853c33?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=500&amp;q=60&quot; alt=&quot;鲁菜&quot;&gt;
			&lt;div&gt;
				&lt;h3&gt;鲁菜&lt;/h3&gt;
				&lt;p&gt;鲁菜是山东菜系的代表,以烹制海鲜、肉类等食材而闻名。&lt;/p&gt;
			&lt;/div&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;img src=&quot;https://images.unsplash.com/photo-1553619367-d6d0e6b7f6e8?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=500&amp;q=60&quot; alt=&quot;广东菜&quot;&gt;
			&lt;div&gt;
				&lt;h3&gt;广东菜&lt;/h3&gt;
				&lt;p&gt;广东菜是粤菜的代表,以粤菜为基础,吸收了其他地方的烹饪技巧。&lt;/p&gt;
			&lt;/div&gt;
		&lt;/li&gt;
	&lt;/ul&gt;
&lt;/section&gt;

&lt;section id=&quot;east&quot;&gt;
	&lt;h2&gt;东方菜系&lt;/h2&gt;
	&lt;ul&gt;
		&lt;li&gt;
			&lt;img src=&quot;https://images.unsplash.com/photo-1598510208418-2726c7f6d4d0?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=500&amp;q=60&quot; alt=&quot;寿司&quot;&gt;
			&lt;div&gt;
				&lt;h3&gt;寿司&lt;/h3&gt;
				&lt;p&gt;寿司是日本菜系的代表,是一种典型的日本传统美食。&lt;/p&gt;
			&lt;/div&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;img src=&quot;https://images.unsplash.com/photo-1601181487807-5745f8f5c5e0?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=500&amp;q=60&quot; alt=&quot;火锅&quot;&gt;
			&lt;div&gt;
				&lt;h3&gt;火锅&lt;/h3&gt;
				&lt;p&gt;火锅是四川菜系的代表,以其麻辣味和多样化的食材而闻名。&lt;/p&gt;
			&lt;/div&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;img src=&quot;https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=500&amp;q=60&quot; alt=&quot;拉面&quot;&gt;
			&lt;div&gt;
				&lt;h3&gt;拉面&lt;/h3&gt;
				&lt;p&gt;拉面是中国东北菜系的代表,以其劲道的面条和浓郁的汤头而闻名。&lt;/p&gt;
			&lt;/div&gt;
		&lt;/li&gt;
	&lt;/ul&gt;
&lt;/section&gt;

&lt;section id=&quot;west&quot;&gt;
	&lt;h2&gt;西方菜系&lt;/h2&gt;
	&lt;ul&gt;
		&lt;li&gt;
			&lt;img src=&quot;https://images.unsplash.com/photo-1541543366562-7a3d3b3ac7f5?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=500&amp;q=60&quot; alt=&quot;比萨&quot;&gt;
			&lt;div&gt;
				&lt;h3&gt;比萨&lt;/h3&gt;
				&lt;p&gt;比萨是意大利菜系的代表,以其薄脆的饼皮和多样化的配料而闻名。&lt;/p&gt;
			&lt;/div&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;img src=&quot;https://images.unsplash.com/photo-1536513859269-e4a162bfb6d7?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=500&amp;q=60&quot; alt=&quot;汉堡&quot;&gt;
			&lt;div&gt;
				&lt;h3&gt;汉堡&lt;/h3&gt;
				&lt;p&gt;汉堡是美国菜系的代表,以其肉质鲜美、口感丰富而闻名。&lt;/p&gt;
			&lt;/div&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;img src=&quot;https://images.unsplash.com/photo-1579783483449-770a0c7f5f8f?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=500&amp;q=60&quot; alt=&quot;牛排&quot;&gt;
			&lt;div&gt;
				&lt;h3&gt;牛排&lt;/h3&gt;
				&lt;p&gt;牛排是法国菜系的代表,以其肉质细嫩、口感丰富而闻名。&lt;/p&gt;
			&lt;/div&gt;
		&lt;/li&gt;
	&lt;/ul&gt;
&lt;/section&gt;

&lt;footer&gt;
	&lt;p&gt;版权所有 © 2021 中国美食介绍&lt;/p&gt;
&lt;/footer&gt;
</code></pre>
</body>
</html>
中国美食介绍 - 品味中华美食文化

原文地址: https://www.cveoy.top/t/topic/nkC3 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录