-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
124 lines (123 loc) · 5.03 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title></title>
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
</head>
<body>
<div class="topnav" id="myTopnav">
<div class="wrapper">
<a href="index.html">
<img src="images/Church_Of_God_Color_Symbol-logo-D8E5C01824-seeklogo.com.png">
</a>
<a href="#news">News</a>
<a href="contactus.html">Contact</a>
<a href="#about">About</a>
<a href="#search">
<input type="text" name="search" placeholder="Search..">
</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">☰</a>
</div>
<div>
<img class="hero" src="images/hacktober4.png" alt="hacktoberfest">
</div>
<div>
<h3>Did You Know Know You Can Win A "Hacktoberfest"
Branded T-shirt?
</br>It's As Simple As:
</h3>
<div class="container">
<div class="git-command">
<img src="images/hacktober1.jpeg">
<h4>Pull</h4>
<p>By running 'git pull' </p>
</div>
<div class="git-command">
<img src="images/hacktober2.jpeg">
<h4>Contribute</h4>
<p>By adding your codes</p>
</div>
<div class="git-command">
<img src="images/hacktober3.jpeg">
<h4>Stage</h4>
<p>By running 'git add .'</p>
</div>
<div class="git-command">
<img src="images/hacktober7.jpeg">
<h4>Commit</h4>
<p>And make a pull request</p>
</div>
</div>
</div>
<div class="text-container">
</br>
<div>
<p><span>How it works:</span></p><hr>To get a shirt, you must make four pull requests between October 1�31 in any timezone. Pull requests can be to any public repo on GitHub, not just the ones we�ve highlighted. The pull request must contain commits you made yourself. Pull requests reported by maintainers as spam or that are automated will be marked as invalid and won�t count towards the shirt.</p>
</div>
<div>
<p><span>Event details</span></p><hr>
<ul>
<li>Hacktoberfest is 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>
<li>Hacktoberfest is a month-long celebration of open source software in partnership with GitHub</li>
</ul>
</div>
</div>
<div class="text-container">
<div>
<p>
<span>How can my project get Involved (Maintainers):</span>
</p>
<hr>
Apply the label �Hacktoberfest� to issues in your GitHub project that are ready for new contributors to work on.
</br>Here are tips for creating a good Hacktoberfest issue in your project:
<ul>
<li>Add a CONTRIBUTING.md file with contribution guidelines to your repo.</li>
<li>Choose issues that have a well-defined scope and are self-contained.</li>
<li>Consider adopting a code of conduct to foster a greater sense of community.</li>
<li>Check out First Timers Bot to help create simple contributor-friendly issues to help onboard people to your project.</li>
</ul>
</div>
<div>
<p>
<span>How can my project get Involved (Contributors):</span>
</p>
<hr>
<p>Find an issue labeled Hacktoberfest, but remember you aren�t limited to those.
</br>Here are tips for creating a good Hacktoberfest issue in your project:
</p>
<ul>
<li>A contribution can be anything�fixing bugs, creating new features, or updating and writing documentation.</li>
<li>Look for a repo�s CONTRIBUTING.md file for contribution guidelines and instructions.</li>
<li>A first time contribution is often more about learning the process than the code itself. </li>
</ul>
</div>
<div>
<p>
<span>Still confused, Reach out to us:</span>
</p>
<hr>
<p>Remember we're never too occupied to hear from you, so never get discouraged to beckon us.
</br>Here are our official email and social media handles:
</p>
Have questions? Get in touch with our team by sending an email to hacktoberfest@digitalocean.com.
</br>
twitter: @digitalocean
</div>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>