-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (67 loc) · 3.57 KB
/
index.html
File metadata and controls
76 lines (67 loc) · 3.57 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/HacktoberfestNamelist/assets/css/master.css">
<link rel="apple-touch-icon" sizes="180x180" href="/HacktoberfestNamelist/assets/icon/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/HacktoberfestNamelist/assets/icon/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/HacktoberfestNamelist/assets/icon/favicon_io/favicon-16x16.png">
<link rel="manifest" href="/HacktoberfestNamelist/assets/icon/favicon_io/site.webmanifest">
<title>Hacktober Name list</title>
</head>
<body>
<header>
<h1>Hacktober Fest 2021</h1>
<p>A month long open source celebration for developers</p>
<a class="btn" href="https://hacktoberfest.digitalocean.com/" target="_blank" rel="noopener noreferrer">Sign Up</a>
<a class="btn" href="#participants">Participants</a>
<a class="btn" href="#rules">Rules</a>
</header>
<div class="table-content">
<h1 id="participants">Participants</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Github ID</th>
<th>Github Link</th>
</tr>
</thead>
<tbody>
<!-- Write from here in this format
<tr>
<td>{name}</td>
<td>{github ID}</td>
<td><a href="{github link}">{github link}</a></td>
</tr>
Don't use creator class in your tr
Write in tbody only-->
<tr class="creator">
<td>Ronit Dutta</td>
<td>RD91</td>
<td><a href="https://github.com/RD91">https://github.com/RD91</a></td>
</tr>
<!-- Start from here -->
</tbody>
</table>
</div>
<div id="rules">
<h1>Rules -:</h1>
<ul>
<li>The pull request must contain commits you made yourself.</li>
<li>If a maintainer reports your pull request as spam, it will not be counted toward your participation in Hacktoberfest.</li>
<li>If a maintainer reports behavior that’s not in line with the project’s code of conduct, you will be ineligible to participate.</li>
<li>A pull request is considered approved once it has an overall approving review from maintainers, or has been merged by maintainers, or has been given the 'hacktoberfest-accepted' label.</li>
</ul>
</div>
<footer>
<strong>Designed by <a class="rd" href="#">RD</a>. Copyright (c) 2021 Copyright Holder All Rights Reserved.</strong>
<a href="https://github.com/" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 24 24">
<path
d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm2.218 18.616c-.354.069-.468-.149-.468-.336v-1.921c0-.653-.229-1.079-.481-1.296 1.56-.173 3.198-.765 3.198-3.454 0-.765-.273-1.389-.721-1.879.072-.177.312-.889-.069-1.853 0 0-.587-.188-1.923.717-.561-.154-1.159-.231-1.754-.234-.595.003-1.193.08-1.753.235-1.337-.905-1.925-.717-1.925-.717-.379.964-.14 1.676-.067 1.852-.448.49-.722 1.114-.722 1.879 0 2.682 1.634 3.282 3.189 3.459-.2.175-.381.483-.444.936-.4.179-1.413.488-2.037-.582 0 0-.37-.672-1.073-.722 0 0-.683-.009-.048.426 0 0 .46.215.777 1.024 0 0 .405 1.25 2.353.826v1.303c0 .185-.113.402-.462.337-2.782-.925-4.788-3.549-4.788-6.641 0-3.867 3.135-7 7-7s7 3.133 7 7c0 3.091-2.003 5.715-4.782 6.641z" />
</svg></a>
</footer>
</body>
</html>