-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 893 Bytes
/
index.html
File metadata and controls
35 lines (35 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<meta charset="utf-8" />
<title>Mountain Dev Tools</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<style>
body {
max-width: 900px;
margin: 40px auto;
padding: 0 16px;
font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 12px;
}
.card {
border: 1px solid #eee;
border-radius: 8px;
padding: 12px;
}
a {
text-decoration: none;
}
</style>
<h1>Mountain Dev Tools</h1>
<p>Handy, client-side tools. No tracking. No logins.</p>
<div class="grid">
<div class="card">
<strong><a href="./sample-tool.html">Sample Tool</a></strong>
<div><small>Updated 2025-08-16</small></div>
<p>A barebones template to copy for new tools.</p>
</div>
<!-- Add more cards as you add tools -->
</div>