forked from GabeNedden/contribute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
41 lines (36 loc) · 1.94 KB
/
about.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
<!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">
</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>About</h1>
<h3>Learn to Contribute to Open-Source!</h3>
</div>
</section>
<section class="contact">
<h3 class="title">Learn More</h3>
<p>Contribute.work is a place for new developers to make their first contribution to open source. As a new developer myself, I had trouble finding an open-source project that I was able to contribute to. I knew there would be others in the same situation and I decided to make something that might be able to help. Since starting this project I've found other similar projects. I highly recommend anyone looking for help to check out <a href="https://github.com/firstcontributions/first-contributions" target="_blank">first-contributions</a> and <a href="https://www.firsttimersonly.com/" target="_blank">first timers only</a> </p>
</section>
<footer>
<p>June 2020</p>
<p>Designed by Gabriel Zur Nedden</p>
</footer>
</body>
</html>