-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (84 loc) · 3.1 KB
/
Copy pathindex.html
File metadata and controls
89 lines (84 loc) · 3.1 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
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AcWoC Practice Repository</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<nav class="navbar">
<div class="container">
<a href="#" class="logo">AcWoC Practice</a>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="">Contribute</a></li>
<li><a href="">Contact</a></li>
<li><a href="">Workshop </a></li>
</ul>
</div>
</nav>
</header>
<section class="hero" id="home">
<div class="container">
<h1>Welcome to the AcWoC Practice Repository</h1>
<p>Your journey to mastering open source contributions starts here.</p>
<a href="" class="cta-button">Get Started</a>
</div>
</section>
<main>
<section class="about" id="about">
<div class="container">
<h2>About the Repository</h2>
<p>
This website is a practice platform designed to help contributors
get hands-on experience with open-source contributions. It serves as
a sandbox for learning the processes of forking repositories,
creating branches, making pull requests, and resolving issues. By
practicing here, contributors can build confidence and refine their
skills to contribute effectively to real-world projects. Whether
you're a beginner or an experienced developer, this repository
offers a structured and supportive environment to enhance your
open-source journey.
</p>
</div>
</section>
<section class="contribute">
<div class="container">
<h2>How to Contribute</h2>
<p>
We have a comprehensive Contributor's Guide that explains the
step-by-step procedure to help you get started with open source
contributions. From setting up your environment to making your first
pull request, the guide covers everything you need to know.
</p>
<a href="AcWoc\AcWoC-Practice\Documents\AcWoC Contributor Guide.pdf" class="cta-button" download>Download Now</a
>
</div>
</section>
<section class="contact">
<div class="container">
<h2>Contact</h2>
<p>
If you're still facing any difficulties, feel free
to reach out to us on Discord or email us at
<b>androidclub@vitbhopal.ac.in.</b>
</p>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2025 AcWoC Practice Repository. All rights reserved.</p>
<ul class="footer-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contribute">Contribute</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</footer>
</body>
</html>