代码aaa
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>文件下载</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.download-container {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
.download-container h1 {
margin-bottom: 15px;
color: #333;
}
.download-container p {
margin-bottom: 20px;
color: #666;
}
.download-button {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
color: #fff;
background-color: #007BFF;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
}
.download-button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div>
<h1>下载文件</h1>
<p>点击下面的按钮下载你需要的文件。</p>
<a href="path/to/your/file.zip">下载文件</a>
</div>
</body>
</html>