html和css制作小米商城
时间: 2023-09-13 15:07:49 浏览: 317
好的,让我们来一步一步制作小米商城的页面。首先,我们需要写HTML代码来创建网页的内容。
HTML代码:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>小米商城</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">产品</a></li>
<li><a href="#">社区</a></li>
<li><a href="#">服务</a></li>
<li><a href="#">支持</a></li>
</ul>
</nav>
</header>
<main>
<section class="banner">
<h1>小米10 至尊纪念版</h1>
<p>12GB + 256GB | 骁龙865 | 120X 变焦四摄 | 120W 有线闪充 | 4500mAh 大电池</p>
<a href="#">立即购买</a>
</section>
<section class="products">
<h2>热门产品</h2>
<div class="product">
<img src="phone.jpg" alt="小米10">
<h3>小米10</h3>
<p>骁龙865 | 108MP 四摄 | 30W 有线闪充 | 4780mAh 大电池</p>
<a href="#">了解更多</a>
</div>
<div class="product">
<img src="tv.jpg" alt="小米电视">
<h3>小米电视</h3>
<p>4K 高清 | 杜比音效 | 人工智能语音 | 海量内容</p>
<a href="#">了解更多</a>
</div>
<div class="product">
<img src="earphone.jpg" alt="小米耳机">
<h3>小米耳机</h3>
<p>无线蓝牙 | 主动降噪 | 长续航</p>
<a href="#">了解更多</a>
</div>
</section>
<section class="about-us">
<h2>关于我们</h2>
<p>小米成立于2010年,是一家专注于智能硬件和电子产品研发的公司,致力于让人们享受科技带来的美好生活。</p>
<a href="#">了解更多</a>
</section>
</main>
<footer>
<p>© 小米科技</p>
</footer>
</body>
</html>
```
接下来,我们需要写CSS代码来美化我们的网页。
CSS代码:
```css
/* reset.css */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* 全局样式 */
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.6;
color: #333;
}
a {
color: #333;
text-decoration: none;
}
ul {
list-style: none;
}
/* header */
header {
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 20px;
position: sticky;
top: 0;
z-index: 1;
}
nav ul {
display: flex;
justify-content: space-between;
align-items: center;
}
nav li {
margin-right: 20px;
}
nav li:last-child {
margin-right: 0;
}
nav a {
font-weight: bold;
}
/* banner */
.banner {
background-image: url(mibanner.jpg);
background-position: center center;
background-size: cover;
height: 600px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
}
.banner h1 {
font-size: 60px;
margin-bottom: 20px;
}
.banner p {
font-size: 24px;
margin-bottom: 40px;
}
.banner a {
background-color: #ff6700;
padding: 10px 30px;
border-radius: 50px;
color: #fff;
font-size: 20px;
}
/* products */
.products {
padding: 80px 0;
background-color: #f5f5f5;
}
.products h2 {
font-size: 36px;
text-align: center;
margin-bottom: 40px;
}
.product {
background-color: #fff;
padding: 40px;
text-align: center;
margin-bottom: 40px;
}
.product img {
max-width: 100%;
margin-bottom: 20px;
}
.product h3 {
font-size: 24px;
margin-bottom: 10px;
}
.product p {
font-size: 18px;
margin-bottom: 20px;
}
.product a {
background-color: #ff6700;
padding: 10px 30px;
border-radius: 50px;
color: #fff;
font-size: 20px;
}
/* about us */
.about-us {
padding: 80px 0;
text-align: center;
}
.about-us h2 {
font-size: 36px;
margin-bottom: 40px;
}
.about-us p {
font-size: 18px;
margin-bottom: 40px;
}
.about-us a {
background-color: #ff6700;
padding: 10px 30px;
border-radius: 50px;
color: #fff;
font-size: 20px;
}
/* footer */
footer {
background-color: #f5f5f5;
padding: 20px;
text-align: center;
margin-top: 40px;
}
```
保存上述代码为 `index.html` 和 `style.css`,并将图片 `mibanner.jpg`、`phone.jpg`、`tv.jpg`、`earphone.jpg` 放在同一目录下。然后在浏览器中打开 `index.html` 即可看到小米商城的页面了。
阅读全文