-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.41 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.41 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
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ONDC FAQs</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header class="bg-primary text-white py-3">
<div class="container d-flex align-items-center gap-3">
<img src="https://ondc.org/images/ondc_logo.svg" alt="ONDC logo" height="40">
<h1 class="h4 m-0">ONDC FAQs</h1>
</div>
</header>
<main class="container my-5">
<input id="tagSearch" class="form-control" placeholder="Search by tag or keyword…" aria-label="Search FAQs">
<div id="faqAccordion" class="accordion mt-4"></div>
</main>
<footer class="text-center small text-muted py-4">© 2025 ONDC</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/js-yaml@4.1.0/dist/js-yaml.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/fuse.js@6.6.2/dist/fuse.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>