forked from IMGIITRoorkee/open-source-arcade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (37 loc) · 999 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Open Source Arcade</title>
<!-- Link to Bootstrap CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
/>
<!-- Link to your external CSS file -->
<link rel="stylesheet" href="src/styles.css" />
</head>
<body>
<div class="container mt-5">
<h1 class="text-center mb-4">Hello Contributors!</h1>
<!-- Search Bar -->
<div class="search-bar mb-4 text-center">
<input
type="text"
id="searchInput"
class="form-control"
placeholder="Search by name"
oninput="filterContributors()"
/>
</div>
<!-- Content will be dynamically loaded here -->
<div
class="contributor-list"
id="contributorList"
></div>
</div>
<!-- Link to your external JavaScript file -->
<script src="src/script.js"></script>
</body>
</html>