-
Notifications
You must be signed in to change notification settings - Fork 296
Expand file tree
/
Copy pathgitChallenges.html
More file actions
77 lines (72 loc) · 2.59 KB
/
gitChallenges.html
File metadata and controls
77 lines (72 loc) · 2.59 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Open Source Challenges</title>
<style>
body { font-family: 'Segoe UI', sans-serif; background: #fefefe; padding: 2rem; }
h1 { color: #2d3748; }
p.description { color: #4a5568; margin-bottom: 2rem; }
.challenge-list { display: grid; gap: 1.2rem; }
.challenge {
background: white;
padding: 1rem 1.5rem;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
transition: 0.3s ease;
}
.challenge:hover {
transform: translateY(-3px);
box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.challenge-title { font-weight: 600; color: #dd6b20; }
.challenge-desc { color: #718096; font-size: 0.95rem; }
.explorebtn {
margin-top: 0.5rem;
padding: 0.3rem 0.8rem;
background-color: #0778f1;
color: white;
border-radius: 8px;
text-align: right;
cursor: pointer;
transition: background-color 0.3s ease;
font-size: 0.92rem;
float: right;
}
.explorebtn:hover {
background-color: #034081;
}
</style>
</head>
<body>
<h1>Open Source Challenges</h1>
<p class="description">Start contributing to open source by completing these beginner-friendly tasks:</p>
<div class="challenge-list">
<div class="challenge">
<div class="challenge-title">Find a Good First Issue</div>
<div class="challenge-desc">Use GitHub filters to find beginner-friendly open issues and comment on one.</div>
<div class="explorebtn"> Explore more </div>
</div>
<div class="challenge">
<div class="challenge-title">Fork & Clone a Repo</div>
<div class="challenge-desc">Fork a project, clone it, and set up the local dev environment.</div>
<div class="explorebtn"> Explore more </div>
</div>
<div class="challenge">
<div class="challenge-title">Make a Pull Request</div>
<div class="challenge-desc">Fix a typo or small bug and raise a PR to get your first contribution.</div>
<div class="explorebtn"> Explore more </div>
</div>
<div class="challenge">
<div class="challenge-title">Improve a README</div>
<div class="challenge-desc">Find a project with a weak README and add helpful info or setup steps.</div>
<div class="explorebtn"> Explore more </div>
</div>
<div class="challenge">
<div class="challenge-title">Join a GitHub Discussion</div>
<div class="challenge-desc">Participate in an open-source discussion thread and share suggestions.</div>
<div class="explorebtn"> Explore more </div>
</div>
</div>
</body>
</html>