-
Notifications
You must be signed in to change notification settings - Fork 743
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.08 KB
/
Copy pathindex.html
File metadata and controls
29 lines (29 loc) · 1.08 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>ML-CaPsule — Project Index</title>
<meta name="description" content="Browse ML-CaPsule projects by category, difficulty, and technology." />
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<header>
<h1>ML-CaPsule — Project Index</h1>
<p>Filter projects by category, difficulty, or technology.</p>
</header>
<main>
<section class="filters">
<input id="search" placeholder="Search projects..." />
<select id="category"><option value="">All Categories</option></select>
<select id="difficulty"><option value="">All Difficulty</option></select>
<select id="tech"><option value="">All Technologies</option></select>
</section>
<section id="grid" class="grid"></section>
</main>
<footer>
<small>Generated from <a href="./projects.json">projects.json</a></small>
</footer>
<script src="./script.js"></script>
</body>
</html>