-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathindex.html
67 lines (61 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Contributors Page</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color:black;
}
.container{
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: rgb(0, 0, 0);
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
color:white;
}
li{
max-width: 800px;
margin: 0 auto;
padding: 10px;
font-size: medium;
background-color: orange;
border-radius: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
color:black;
}
h1 {
color: orange;
}
ul#contributors {
list-style-type: none;
padding: 0;
}
ul#contributors li::before {
content: "Add your name here"; /* This comment indicates where contributors can add their names */
color: #aaa;
}
li{
margin-bottom:5px;
}
</style>
</head>
<body>
<div class="container">
<h1>Contributors</h1>
<hr>
<p>Join us by adding your name to the list of contributors:</p>
<ol id="contributors">
<!-- Add your name below this line -->
<li>Ishwar Raut</li>
<li>Daivik Karbhari</li>
<li>Elizabeth Pawar</li>
<li>Pranav Gavande</li>
</ol>
</div>
</body>
</html>