帮我写一个关于苹果商店的网页,要求能在记事本打开的源代码
时间: 2024-06-04 20:11:44 浏览: 175
毕业设计JAVA记事本源代码
<!DOCTYPE html>
<html>
<head>
<title>Apple Store</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
h1 {
color: #333;
text-align: center;
margin-top: 50px;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 50px;
}
.card {
background-color: #fff;
box-shadow: 0px 0px 10px #ccc;
margin: 20px;
padding: 20px;
width: 300px;
}
.card img {
display: block;
margin: 0 auto;
max-width: 100%;
}
.card h2 {
font-size: 24px;
margin-top: 20px;
margin-bottom: 10px;
text-align: center;
}
.card p {
font-size: 16px;
line-height: 1.5;
margin-bottom: 20px;
text-align: justify;
}
.card button {
background-color: #333;
border: none;
color: #fff;
cursor: pointer;
font-size: 16px;
padding: 10px;
width: 100%;
}
.card button:hover {
background-color: #555;
}
</style>
</head>
<body>
<h1>Apple Store</h1>
<div class="container">
<div class="card">
<img src="https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/iphone-12-pro-max-graphite-hero?wid=940&hei=1112&fmt=png-alpha&.v=1604021661000" alt="iPhone 12 Pro Max">
<h2>iPhone 12 Pro Max</h2>
<p>The iPhone 12 Pro Max features a 6.7-inch Super Retina XDR display, Ceramic Shield with four times better drop performance, A14 Bionic chip, and 5G.</p>
<button>Buy Now</button>
</div>
<div class="card">
<img src="https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/mbp-spacegray-select-202011_GEO_CN?wid=892&hei=820&fmt=jpeg&qlt=80&.v=1628492452000" alt="MacBook Pro">
<h2>MacBook Pro</h2>
<p>The MacBook Pro is equipped with Apple's M1 chip for up to 2.8x faster performance, 20 hours of battery life, and a stunning Retina display.</p>
<button>Buy Now</button>
</div>
<div class="card">
<img src="https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/airpods-max-select-202102_GEO_CN?wid=940&hei=1112&fmt=png-alpha&.v=1613879995000" alt="AirPods Max">
<h2>AirPods Max</h2>
<p>AirPods Max offer high-fidelity audio, Adaptive EQ, Active Noise Cancellation, and spatial audio for an immersive listening experience.</p>
<button>Buy Now</button>
</div>
</div>
</body>
</html>
阅读全文