forked from Its-Aman-Yadav/Community-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
our plan.html
172 lines (154 loc) · 6.19 KB
/
our plan.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Open Source Community Plan</title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="css/animate.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/ourplan.css" />
<script src="https://kit.fontawesome.com/90889e6878.js" crossorigin="anonymous"></script>
<link
href="https://fonts.googleapis.com/css2?family=Gorditas&family=Playpen+Sans:wght@100;500&family=Poppins&family=Prompt&family=Roboto&family=Satisfy&family=Ubuntu:wght@300;400&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
/>
<script type="text/javascript">
window.addEventListener("scroll", function () {
var header = document.querySelector("nav");
header.classList.toggle("sticky", window.scrollY > 50)
})
</script>
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<nav>
<a class="logo-link" href="#home">
<label class="logo">
<img src="images/fav.png" alt="logo">
<span class="logo-text">Open Source Village</span>
</label>
<div>
<span class="logo-subtext">Source</span>
</div>
</a>
<ul>
<li><i class="fa-solid fa-house"></i><a class="active" href="#home">Home</a></li>
<li><i class="fa-solid fa-address-card"></i><a href="#about">About</a></li>
<li><i class="fa-solid fa-screwdriver-wrench"></i><a href="#services">Services</a></li>
<li><i class="fa-solid fa-pen-to-square"></i><a href="#testimonials">Reviews</a></li>
<li><i class="fa-solid fa-address-book"></i><a href="#contact">Contact</a></li>
<li><i class="fa-solid fa-right-to-bracket"></i><a href="login.html">Login/Register</a></li>
</ul>
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox" />
<div class="slider round" id="toggle"></div>
</label>
<!-- <img id="image" src="path/to/profile/image.jpg" onclick="ProfileClicked()" alt="Profile"> -->
<img id="image" style="margin-right: 55px;" src="images/profile1.jpg" onclick="ProfileClicked()" alt="Profile">
</nav>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
const toggleButton = document.getElementById('checkbox');
toggleButton.addEventListener('change', function () {
document.body.classList.toggle('dark-mode');
});
});
</script>
<main>
<section class="introduction" id="introduction">
<!-- <h2>Introduction</h2> -->
<p>
Welcome to our open source community! We are dedicated to fostering
collaboration, learning, and innovation through open source projects.
This webpage outlines our community plan and how you can get involved.
</p>
</section>
<section class="goal" id="goals">
<h2>Goals</h2>
<ul class="goals">
<li class="ribbon">Promote open source collaboration</li>
<li class="ribbon">Encourage learning and skill development</li>
<li class="ribbon">Build innovative solutions to real-world problems</li>
<li class="ribbon">Foster an inclusive and supportive community</li>
</ul>
</section>
<section class="guidelines" id="guidelines">
<h2>Community Guidelines</h2>
<p>
Our community guidelines are designed to create a welcoming and
productive environment for all members:
</p>
<ul>
<li>Be respectful and considerate</li>
<li>Encourage diverse perspectives</li>
<li>Provide constructive feedback</li>
<li>Respect privacy and confidentiality</li>
<li>Follow the code of conduct</li>
</ul>
</section>
<section class="contributions" id="contributions">
<h2>Project Contributions</h2>
<p>
We welcome contributions from everyone. Here’s how you can get
involved:
</p>
<ul>
<li><p>Find a project that interests you</p></li>
<li><i class="fa-solid fa-arrow-right"></i><p>Read the contribution guidelines</p></li>
<li><i class="fa-solid fa-arrow-right"></i><p>Fork the repository and make your changes</p></li>
<li><i class="fa-solid fa-arrow-right"></i><p>Submit a pull request</p></li>
<li><i class="fa-solid fa-arrow-right"></i><p>Join our community discussions</p></li>
</ul>
</section>
<section class="contact" id="contact">
<div style="padding-right: 0px; margin-right: 0px;">
<h2>Contact</h2>
<p>
If you have any questions or need support, feel free to reach out to
us:
</p>
</div>
<div>
<form class="contact-form" id="contact-form">
<div style="display: flex; gap:5px">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required />
</div>
<div style="display: flex; gap:5px">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required />
</div>
<div style="display: flex; gap:5px">
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
</div>
<button type="submit">Submit</button>
</form>
</div>
</section>
</main>
<special-footer></special-footer>
<script>
document
.getElementById("contact-form")
.addEventListener("submit", function (event) {
event.preventDefault();
alert("Thank you for your message. We will get back to you soon.");
document.getElementById("contact-form").reset();
});
</script>
<script src="footer/footer.js"></script>
</body>
</html>