-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathindex.html
102 lines (91 loc) · 4.35 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contribute</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Quicksand&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/css/all.min.css">
<style>
.btn:hover{
background-color:white;
color:#555555;
border: 1px solid #555555;
transition: ease 0.5s;
}
</style>
</head>
<body>
<header>
<h2><a class="header" href="index.html">Contribute!</a></h2>
<nav>
<li><a class="header" href="about.html">About</a></li>
<li><a class="header" href="contributors.html">Contributors</a></li>
<li><a class="header" href="https://github.com/GabeNedden/contribute" target="_blank">Github</a></li>
</nav>
</header>
<section class="hero">
<div class="background-image" style="background-image: url(assets/img/main.jpg);"></div>
<div class="hero-content-area">
<h1>Let's Contribute</h1>
<h3>Learn to Contribute to Open-Source!</h3>
</div>
</section>
<section class="mission">
<h3 class="title">Our Mission</h3>
<p>To help new developers excited to work on Open-Source projects but <a href="https://github.com/GabeNedden/contribute" target="_blank">need help getting started</a>.</p>
<hr>
<ul class="grid">
<li class="small" style="background-image: url(assets/img/scrumBoard.jpg);"></li>
<li class="large" style="background-image: url(assets/img/computerHands.jpg);"></li>
<li class="large" style="background-image: url(assets/img/gitHub.jpg);"></li>
<li class="small" style="background-image: url(assets/img/computerGraph.jpg);"></li>
</ul>
</section>
<section class="gridpanel">
<h3 class="title">Here's how to get started in 4 simple steps!</h3>
<hr>
<ul class="grid">
<li>
<i class="fas fa-folder-open fa-4x"></i>
<h4>Fork & Clone the repo...</h4>
<p><a href="https://docs.github.com/en/get-started/quickstart/fork-a-repo">Fork the repository</a> by clicking on the fork button on top of the repo. Then <a href="https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository">clone it</a> onto your local machine.</p>
</li>
<li>
<i class="fa fa-id-card fa-4x"></i>
<h4>Make the changes...</h4>
<p>Make your changes in the code, preferably on a new branch. Next commit those changes and push them!</p>
</li>
<li>
<i class="fab fa-github-square fa-4x"></i>
<h4>Make a PR...</h4>
<p>Now finally it's time to make a <a href="https://docs.github.com/en/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests">Pull Request</a> and wait for it to be merged.</p>
</li>
<li>
<i class="far fa-thumbs-up fa-4x"></i>
<h4>and Approved!</h4>
<p>Once it is merged you will be able to see your contribution on the main repository. It's time to celebrate your first PR! 🥳</p>
</li>
</ul>
</section>
<section class="contact">
<h3 class="title">Learn More</h3>
<p>To Learn more about Open Source projects and how to contribute to them...</p>
<hr>
<form>
<a href="https://github.com/GabeNedden/contribute" target="_blank" class="btn header">Check us out on Github</a>
</form>
</section>
<footer>
<p class="footer-date"></p>
<p>Designed by Gabriel Zur Nedden</p>
</footer>
<script>
const monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
const d = new Date();
var ele = document.getElementsByClassName('footer-date')[0];
ele.innerHTML = monthNames[d.getMonth()] + " " + d.getFullYear();
</script>
</body>
</html>