Skip to content

Instantly share code, notes, and snippets.

@qqcf
Created October 6, 2025 03:32
Show Gist options
  • Save qqcf/4074e68d1e87f4b6dc20bcbebb588c3d to your computer and use it in GitHub Desktop.
Save qqcf/4074e68d1e87f4b6dc20bcbebb588c3d to your computer and use it in GitHub Desktop.
我的书签
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>我的书签</title>
<style>
body {
margin:0;
font-family:sans-serif;
background:#f9fafb;
color:#111;
padding:2rem;
max-width:900px;
margin:auto;
}
h1 {
text-align:center;
margin-bottom:2rem;
}
h2 {
border-bottom: 1px solid #93c5fd;
padding-bottom: 0.2rem;
margin-top: 2rem;
}
.bookmark-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 0.5rem 1rem;
margin-top:0.5rem;
padding-left:0;
list-style:none;
}
.bookmark-grid li {
background: white;
padding: 0.5rem;
border-radius: 6px;
border:1px solid #ddd;
}
a {
text-decoration:none;
color:#2563eb;
word-break:break-all;
display:block;
}
@media (max-width:480px){
body { padding:1rem; }
.bookmark-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<h1>我的书签</h1>
<!-- 分类:开发 -->
<h2>开发</h2>
<ul class="bookmark-grid">
<li><a href="https://developer.mozilla.org/" target="_blank">MDN Web Docs</a></li>
<li><a href="https://stackoverflow.com/" target="_blank">Stack Overflow</a></li>
<li><a href="https://github.com/" target="_blank">GitHub</a></li>
<li><a href="https://www.npmjs.com/" target="_blank">NPM</a></li>
<li><a href="https://codepen.io/" target="_blank">CodePen</a></li>
</ul>
<!-- 分类:设计 -->
<h2>设计</h2>
<ul class="bookmark-grid">
<li><a href="https://unsplash.com/" target="_blank">Unsplash</a></li>
<li><a href="https://www.figma.com/" target="_blank">Figma</a></li>
<li><a href="https://dribbble.com/" target="_blank">Dribbble</a></li>
</ul>
<!-- 分类:娱乐 -->
<h2>娱乐</h2>
<ul class="bookmark-grid">
<li><a href="https://www.bilibili.com/" target="_blank">Bilibili</a></li>
<li><a href="https://www.youtube.com/" target="_blank">YouTube</a></li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment