用HTML加css创建一个小米手机网站 头部 导航 焦点图 内容 版权框架怎么写?
时间: 2024-03-30 10:33:57 浏览: 55
下面是一个用HTML和CSS创建小米手机网站的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>小米手机网站</title>
<style>
/* 全局样式 */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
/* 头部 */
.header {
background-color: #ff6700;
height: 50px;
line-height: 50px;
text-align: center;
color: #fff;
font-size: 20px;
font-weight: bold;
}
/* 导航 */
.nav {
background-color: #f5f5f5;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 14px;
color: #333;
}
.nav ul {
margin: 0;
padding: 0;
list-style: none;
display: inline-block;
}
.nav li {
display: inline-block;
margin-right: 20px;
}
.nav a {
color: #333;
text-decoration: none;
padding: 5px;
}
.nav a:hover {
background-color: #ff6700;
color: #fff;
border-radius: 5px;
padding: 5px 10px;
transition: all .3s ease;
}
/* 焦点图 */
.slider {
height: 400px;
background-image: url('https://i1.mifile.cn/f/i/17/site/home/home-phone1.png');
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.slider .caption {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
padding: 20px;
width: 500px;
text-align: center;
}
/* 内容 */
.content {
padding: 20px;
}
.product {
margin-bottom: 20px;
border: 1px solid #ccc;
padding: 10px;
display: inline-block;
width: 300px;
vertical-align: top;
margin-right: 20px;
box-sizing: border-box;
}
.product img {
max-width: 100%;
height: auto;
}
.product .name {
font-size: 16px;
font-weight: bold;
margin-top: 10px;
margin-bottom: 5px;
}
.product .price {
font-size: 14px;
color: #ff6700;
font-weight: bold;
}
/* 版权 */
.footer {
background-color: #f5f5f5;
height: 50px;
line-height: 50px;
text-align: center;
color: #999;
font-size: 14px;
margin-top: 20px;
}
</style>
</head>
<body>
<!-- 头部 -->
<header class="header">
小米手机
</header>
<!-- 导航 -->
<nav class="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>
<li><a href="#">智能</a></li>
</ul>
</nav>
<!-- 焦点图 -->
<div class="slider">
<div class="caption">
<h2>小米9 Pro 5G</h2>
<p>骁龙855 Plus / 5G 双模 / 4800 万全场景四摄 / 30W 快充 / 索尼 4800 万前置摄像头</p>
<a href="#" class="btn">了解更多</a>
</div>
</div>
<!-- 内容 -->
<div class="content">
<div class="product">
<img src="https://i1.mifile.cn/a1/pms_1571827846.08419838.jpg" alt="">
<div class="name">小米CC9 Pro</div>
<div class="price">¥2799</div>
</div>
<div class="product">
<img src="https://i1.mifile.cn/a1/pms_1568169840.99092711.jpg" alt="">
<div class="name">Redmi Note 8</div>
<div class="price">¥999</div>
</div>
<div class="product">
<img src="https://i1.mifile.cn/f/i/17/site/home/home-luyouqi.png" alt="">
<div class="name">小米路由器4A</div>
<div class="price">¥99</div>
</div>
</div>
<!-- 版权 -->
<footer class="footer">
© 2021 小米科技有限公司 版权所有
</footer>
</body>
</html>
```
在这个示例代码中,我们使用了HTML和CSS来创建小米手机网站的各个部分:
- 头部:使用一个header元素,设置背景颜色、高度、文本居中等样式。
- 导航:使用一个nav元素和ul、li、a元素,设置背景颜色、高度、居中、悬停变色等样式。
- 焦点图:使用一个div元素和背景图片、绝对定位等样式,添加一个标题、描述和按钮,设置背景颜色、字体颜色、居中等样式。
- 内容:使用一个div元素和多个.product元素,设置每个产品的图片、名称、价格等样式。
- 版权:使用一个footer元素,设置背景颜色、高度、居中、字体颜色等样式。
以上是一个简单的小米手机网站的示例,实际项目中可能需要更加复杂的布局和样式。
阅读全文