-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.6 KB
/
index.html
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
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hook Suspension Glossary</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container my-4">
<h1 class="text-center">Hook Suspension Spanish-English Glossary</h1>
<div class="filter-bar d-flex justify-content-between align-items-center">
<button id="dark-mode-toggle" class="btn btn-outline-secondary">
🌙 Dark Mode
</button>
<label for="search-bar">Search:</label>
<input type="text" id="search-bar" placeholder="Search terms...">
<label for="category-filter" class="form-label me-3">Filter by Category:</label>
<select id="category-filter" class="form-select w-auto">
<option value="">All</option>
</select>
</div>
<table id="glossary-table" class="table table-bordered table-hover" translate="no">
<thead class="table-dark">
<tr>
<th>English Term</th>
<th>Spanish Term</th>
<th id="sort-pos" style="cursor: pointer;">Part of Speech 🔽</th>
<th>Category</th>
<th>Examples</th>
</tr>
</thead>
<tbody>
<!-- Rows will be added dynamically -->
</tbody>
</table>
<footer>
<p>Made with ❤️ for the community.</p>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="script.js"></script>
</body>
</html>