forked from srinidh-007/Coding_Problems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.html
76 lines (68 loc) · 2.7 KB
/
welcome.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Hacktober2021</title>
</head>
<body>
<div class="head">
<h1>Welcome to Hacktober-fest 2021</h1>
</div>
<div class="main">
<h2>Event Details</h2>
<ul>
<li>
Hacktoberfest® is open to everyone in our global community. Whether
you’re a developer, student learning to code, event host, or company
of any size, you can help drive growth of open source and make
positive contributions to an ever-growing community. All backgrounds
and skill levels are encouraged to complete the challenge.
</li>
<li>
Hacktoberfest is a celebration open to everyone in our global
community.
</li>
<li>
Pull requests can be made in any GitHub-hosted repositories/projects.
</li>
<li>You can sign up anytime between October 1 and October 31.</li>
</ul>
</div>
<hr />
<div class="rules-top">
<h1>Hacktober Rules:</h1>
</div>
<div class="one">
<p>
To earn your Hacktoberfest tee or tree reward, you must register and
make four valid pull requests (PRs) between October 1-31 (in any time
zone). Pull requests can be made in any participating GitHub or GitLab
hosted repository/project. Look for the 'hacktoberfest' topic to know if
a repository/project is participating in Hacktoberfest. Pull requests
must be approved by a maintainer of the repository/project to count. If
a maintainer reports your pull request as spam or behavior not in line
with the project’s code of conduct, you will be ineligible to
participate. This year, the first 55,000 participants who successfully
complete the challenge will be eligible to receive a prize.
</p>
</div>
<p>
Whether it’s your 1st or 10th pull request, there’s always more to learn!
We’ve put together a few resources that can help you create quality pull
requests, keep your repositories pristine, and build on your open source
knowledge.
</p>
<div class="link">
<h2><a href="https://discord.gg/hacktoberfest">Join Discord</a></h2>
</div>
</body>
</html>