网盘导航

This commit is contained in:
Saul Hetherman
2024-10-24 11:49:49 +08:00
parent 7c63ee78b0
commit e434369a8f

57
html/pan.html Normal file
View File

@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="en">
<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: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
text-align: center;
}
.links {
display: flex;
flex-direction: column;
gap: 10px;
}
a {
text-decoration: none;
color: #007bff;
font-size: 18px;
padding: 10px;
border: 1px solid #007bff;
border-radius: 5px;
text-align: center;
transition: background-color 0.3s, color 0.3s;
}
a:hover {
background-color: #007bff;
color: white;
}
</style>
</head>
<body>
<div class="container">
<h1>网盘导航</h1>
<div class="links">
<a href="https://drive.uc.cn/">UC 网盘</a>
<a href="https://pan.quark.cn">夸克网盘</a>
</div>
</div>
</body>
</html>