-
Notifications
You must be signed in to change notification settings - Fork 0
/
credits.html
89 lines (81 loc) · 2.13 KB
/
credits.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Credits</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header, main, footer {
padding: 20px;
}
header {
background-color: #007bff;
color: #fff;
text-align: center;
}
h1, h2 {
margin-bottom: 10px;
}
main {
max-width: 800px;
margin: 0 auto;
}
section {
margin-bottom: 30px;
}
ul {
list-style-type: none;
padding: 0;
}
a {
color: #007bff;
}
footer {
background-color: #f8f9fa;
text-align: center;
padding: 10px 0;
}
</style>
</head>
<body>
<header>
<h1>Credits</h1>
<p>Thank you to all the contributors!</p>
</header>
<main>
<section>
<h2>Development Team</h2>
<ul>
<li>Subhanshu Upadhyay - Lead Developer</li>
<li>Ayush Negi - Tester</li>
<li>Garvita Pandey - Tester</li>
<li>Vivek Maurya - Tester</li>
</ul>
</section>
<section>
<h2>Special Thanks</h2>
<p>We would like to give special thanks to:</p>
<ul>
<li>Our mentors for their guidance</li>
<li>The Ankush God (he's gay tho)</li>
</ul>
</section>
<section>
<h2>Resources</h2>
<p>Icons used in this project:</p>
<ul>
<li><a href="https://www.flaticon.com/">Flaticon</a></li>
<li><a href="https://github.com/">GitHub</a></li>
</ul>
</section>
</main>
<footer>
<p>© 2024 SuBDoro. All rights reserved.</p>
</footer>
</body>
</html>