<!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;
		}
<pre><code>	header {
		background-color: #333;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: space-around;
		padding: 10px;
	}

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

	nav {
		background-color: #f2f2f2;
		display: flex;
		justify-content: space-around;
		padding: 10px;
	}

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

	nav a:hover {
		color: #f00;
	}

	section {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		align-items: flex-start;
		padding: 20px;
	}

	.card {
		background-color: #fff;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
		margin: 20px;
		width: 300px;
		text-align: center;
		padding: 20px;
	}

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

	.card h2 {
		font-size: 24px;
		margin: 10px 0;
	}

	.card p {
		font-size: 18px;
		margin: 10px 0;
	}

	.card button {
		background-color: #f00;
		color: #fff;
		padding: 10px 20px;
		border: none;
		border-radius: 5px;
		font-size: 18px;
		cursor: pointer;
	}

	.card button:hover {
		background-color: #333;
	}

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

&lt;/style&gt;
</code></pre>
</head>
<body>
	<header>
		<h1>手机专卖店</h1>
		<form>
			<input type="text" placeholder="搜索...">
			<button type="submit">搜索</button>
		</form>
	</header>
<pre><code>&lt;nav&gt;
	&lt;a href=&quot;#&quot;&gt;首页&lt;/a&gt;
	&lt;a href=&quot;#&quot;&gt;苹果&lt;/a&gt;
	&lt;a href=&quot;#&quot;&gt;华为&lt;/a&gt;
	&lt;a href=&quot;#&quot;&gt;小米&lt;/a&gt;
	&lt;a href=&quot;#&quot;&gt;三星&lt;/a&gt;
	&lt;a href=&quot;#&quot;&gt;联系我们&lt;/a&gt;
&lt;/nav&gt;

&lt;section&gt;
	&lt;div class=&quot;card&quot;&gt;
		&lt;img src=&quot;https://cdn.pixabay.com/photo/2017/08/06/14/00/smartphone-2590578_960_720.jpg&quot; alt=&quot;手机&quot;&gt;
		&lt;h2&gt;苹果 iPhone X&lt;/h2&gt;
		&lt;p&gt;64GB 存储 / 银色&lt;/p&gt;
		&lt;p&gt;价格:7999元&lt;/p&gt;
		&lt;button&gt;立即购买&lt;/button&gt;
	&lt;/div&gt;

	&lt;div class=&quot;card&quot;&gt;
		&lt;img src=&quot;https://cdn.pixabay.com/photo/2016/12/09/11/33/smartphone-1894723_960_720.jpg&quot; alt=&quot;手机&quot;&gt;
		&lt;h2&gt;华为 Mate 30 Pro&lt;/h2&gt;
		&lt;p&gt;128GB 存储 / 青山绿&lt;/p&gt;
		&lt;p&gt;价格:5999元&lt;/p&gt;
		&lt;button&gt;立即购买&lt;/button&gt;
	&lt;/div&gt;

	&lt;div class=&quot;card&quot;&gt;
		&lt;img src=&quot;https://cdn.pixabay.com/photo/2017/08/06/14/00/smartphone-2590578_960_720.jpg&quot; alt=&quot;手机&quot;&gt;
		&lt;h2&gt;小米 10&lt;/h2&gt;
		&lt;p&gt;256GB 存储 / 钛银黑&lt;/p&gt;
		&lt;p&gt;价格:3999元&lt;/p&gt;
		&lt;button&gt;立即购买&lt;/button&gt;
	&lt;/div&gt;

	&lt;div class=&quot;card&quot;&gt;
		&lt;img src=&quot;https://cdn.pixabay.com/photo/2016/12/09/11/33/smartphone-1894723_960_720.jpg&quot; alt=&quot;手机&quot;&gt;
		&lt;h2&gt;三星 Galaxy S20&lt;/h2&gt;
		&lt;p&gt;256GB 存储 / 云霄蓝&lt;/p&gt;
		&lt;p&gt;价格:7999元&lt;/p&gt;
		&lt;button&gt;立即购买&lt;/button&gt;
	&lt;/div&gt;
&lt;/section&gt;

&lt;footer&gt;
	&lt;p&gt;&amp;copy; 2021 手机专卖店&lt;/p&gt;
&lt;/footer&gt;
</code></pre>
</body>
</html>
写一个html关于卖手机的网页

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

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