hao / index.html
keepmove's picture
Update index.html
90fcd96 verified
Raw
History Blame Contribute Delete
2 kB
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>home</title>
<style>
body {
font-family: system-ui, sans-serif;
max-width: 600px;
margin: 50px auto;
padding: 20px;
background: #f9fafb;
}
h2 { color: #111; }
ul { list-style: none; padding: 0; }
li {
margin: 12px 0;
padding: 12px;
background: white;
border-radius: 8px;
box-shadow: 0 1px 4px rgba(0,0,0,0.08);
display: flex;
justify-content: space-between;
align-items: center;
}
a {
color: #1a73e8;
text-decoration: none;
font-weight: 500;
}
.size { color: #666; font-size: 0.9em; }
</style>
</head>
<body>
<h2>📦 File list</h2>
<ul>
<!-- 手动列出每个 zip 文件,文件名与根目录下的实际文件一致 -->
<li>
<span>dataset1.zip</span>
<a href="./Linux固件升级工具.zip" download>⬇️ Dd</a>
</li>
<li>
<span>dataset2.zip</span>
<a href="./dataset2.zip" download>⬇️ Dd</a>
</li>
<li>
<span>dataset3.zip</span>
<a href="./dataset3.zip" download>⬇️ Dd</a>
</li>
<li>
<span>dataset4.zip</span>
<a href="./dataset4.zip" download>⬇️ Dd</a>
</li>
<li>
<span>dataset5.zip</span>
<a href="./dataset5.zip" download>⬇️ Dd</a>
</li>
<li>
<span>model_weights.zip</span>
<a href="./model_weights.zip" download>⬇️ Dd</a>
</li>
<!-- 新增文件时,复制上面一个 <li> 块,修改文件名即可 -->
</ul>
<p style="color: #888; font-size: 0.9em;">
curl:<code>https://yourname.hf.space/filename.zip</code>
</p>
</body>
</html>