用html制作一个iphone网页
时间: 2023-10-04 20:10:12 浏览: 134
以下是一个简单的 HTML 代码示例,可以用来制作类似于 iPhone 的网页:
```html
<!DOCTYPE html>
<html>
<head>
<title>iPhone 网页示例</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: #f2f2f2;
font-family: Arial, Helvetica, sans-serif;
}
.container {
margin: 20px auto;
max-width: 400px;
background-color: #fff;
border-radius: 10px;
padding: 20px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
}
.header img {
height: 30px;
}
.navbar {
display: flex;
background-color: #eee;
border-radius: 5px;
overflow: hidden;
margin-bottom: 20px;
}
.navbar a {
display: block;
padding: 10px;
text-align: center;
flex: 1;
text-decoration: none;
color: #555;
font-weight: bold;
}
.navbar a.active {
background-color: #007aff;
color: #fff;
}
.content {
text-align: center;
margin-bottom: 20px;
}
.content img {
max-width: 100%;
height: auto;
margin-bottom: 10px;
}
.footer {
text-align: center;
font-size: 12px;
color: #aaa;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<img src="https://i.imgur.com/6f8yvRP.png" alt="iPhone" />
<button>搜索</button>
</div>
<div class="navbar">
<a href="#" class="active">主页</a>
<a href="#">新闻</a>
<a href="#">社交</a>
<a href="#">设置</a>
</div>
<div class="content">
<img src="https://i.imgur.com/4a74HJr.jpg" alt="iPhone" />
<h2>欢迎来到 iPhone 网页示例</h2>
<p>这是一个简单的 HTML 示例,用于展示如何制作类似于 iPhone 的网页。</p>
</div>
<div class="footer">
<p>©2021 iPhone 网页示例</p>
</div>
</div>
</body>
</html>
```
在浏览器中打开该 HTML 文件,即可看到类似于 iPhone 的网页效果。可以根据需要进行修改和调整。
阅读全文