forked from Jobin-S/contributors-showcase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (24 loc) · 818 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Contributors</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Our Amazing Contributors</h1>
<p>Thank you to everyone who has contributed to this project!</p>
</header>
<main>
<div class="contributors-grid" id="contributorsContainer">
<!-- Contributors cards will be inserted here dynamically -->
</div>
</main>
<footer>
<p>Want to contribute? Check out our <a href="https://github.com/Jobin-S/contributors-showcase/blob/master/CONTRIBUTING.md">contribution guidelines</a>.</p>
</footer>
<script src="script.js"></script>
</body>
</html>