-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (78 loc) · 4.21 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Link to the Inter font from Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap">
<link rel="icon" href="assets/icon.png" type="image/x-icon">
<link rel="stylesheet" href="assets/css/style.css">
<title>Hacktoberfest Contributor Showcase</title>
</head>
<body>
<div class="header">
<h1>Hacktoberfest Contributor Showcase</h1>
<!-- Navigation links for smooth scrolling -->
<nav>
<ul>
<li><a href="#how-to-contribute">How to Contribute</a></li>
<li><a href="#contributor-list">Contributor List</a></li>
</ul>
</nav>
</div>
<div class="container" id="contributor-list">
<h2>Contributor List</h2>
<ul id="contributors">
<!-- Add your information here -->
<li><strong>Kartikey Bhatnagar</strong> - Hobby: Coding, <a href="https://github.com/kartikey-codes"
target="_blank">GitHub Profile</a></li>
<li><strong>Avi Gupta</strong> - Hobby: Coding, <a href="https://github.com/IVAVI17" target="_blank">GitHub
Profile</a></li>
<li><strong>Asutosh Kataruka</strong> - Hobby: Programming, <a href="https://github.com/Akataruka"
target="_blank">GitHub Profile</a></li>
<li><strong>Ritesh Mishra</strong> - Hobby: Coding, <a href="https://github.com/iriteshmishra"
target="_blank">GitHub Profile</a></li>
</ul>
</div>
<div class="how-to-contribute" id="how-to-contribute">
<div class="container">
<h2>How to Contribute</h2>
<p>Welcome to the Hacktoberfest Contributor Showcase! We invite you to add your profile to our list:</p>
<ol>
<li>Fork this repository on GitHub by clicking the "Fork" button at the top-right of this page.</li>
<li>Clone your forked repository to your local machine using Git:</li>
</ol>
<pre><code class="language-bash">git clone https://github.com/kartikey-codes/hacktoberfest-ContributorShowcase.git</code></pre>
<ol start="3">
<li>Edit the <code>index.html</code> file to add your information to the list.</li>
</ol>
<p>In the <code>index.html</code> file, you will find a section for contributors. Add your information in
the following format:</p>
<pre><code class="language-html">
<li><strong>Your Name</strong> - Hobby: Your Hobby, <br> <a href="https://github.com/your-github-username" target="_blank">GitHub Profile</a></li>
</code></pre>
<p>Replace <code>Your Name</code> with your name, <code>Your Hobby</code> with your hobby or interest, and
<code>your-github-username</code> with your GitHub username.
</p>
<ol start="4">
<li>Commit your changes with a meaningful message (e.g., "Added my profile"):</li>
</ol>
<pre><code class="language-bash">git add index.html
git commit -m "Added my profile"</code></pre>
<ol start="5">
<li>Push the changes to your GitHub repository:</li>
</ol>
<pre><code class="language-bash">git push origin main</code></pre>
<ol start="6">
<li>Create a Pull Request (PR) from your forked repository to this main repository on GitHub.</li>
</ol>
<p>To get approval of the pull request much quicker and faster (`Follow Me`)🚀</p>
<p> Don't forget to star this repository to show your support!</p>
<p>I will review your PR, and once approved, your profile will appear on this page!</p>
<p>Thank you for contributing to the Hacktoberfest Contributor Showcase. Let's celebrate your participation!
</p>
</div>
</div>
<script src="assets/js/script.js"></script>
</body>
</html>