上传文件至 /

This commit is contained in:
KuaiLeTianShi 2024-08-29 08:50:43 +08:00
parent 50177164fb
commit b2fc15101f

63
yl.html Normal file
View File

@ -0,0 +1,63 @@
<!DOCTYPE html>
<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;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1 {
text-align: center;
color: #333;
}
.link-list {
list-style: none;
padding: 0;
}
.link-list li {
margin: 10px 0;
}
.link-list a {
text-decoration: none;
color: #007BFF;
font-size: 18px;
transition: color 0.3s;
}
.link-list a:hover {
color: #0056b3;
}
.footer {
text-align: center;
margin-top: 20px;
font-size: 14px;
color: #777;
}
</style>
</head>
<body>
<div class="container">
<h1>友情链接</h1>
<ul class="link-list">
<li><a href="https://cftqcloud.szczk.top/" target="_blank">CFTQ Cloud</a></li>
<li><a href="https://c.hezhongkj.top/" target="_blank">猎剑文件鉴定云</a></li>
<!-- 添加更多友情链接 -->
</ul>
<div class="footer">
&copy; 2022-2024 汐云安全工作室 保留所有权利.
</div>
</div>
</body>
</html>