forked from Its-Aman-Yadav/Community-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmember.html
160 lines (146 loc) · 4.61 KB
/
member.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Become a Member - Open Source Community</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
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"
/>
<style>
body {
font-family: "Arial", sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background: #4caf50;
color: #000000;
padding: 15px 0;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header h1 {
margin: 0;
}
nav ul {
padding: 0;
list-style: none;
text-align: center;
margin: 0;
}
nav ul li {
display: inline;
margin: 0 10px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
transition: color 0.3s, background-color 0.3s;
padding: 5px 10px;
border-radius: 5px;
}
nav ul li a:hover {
color: #4caf50;
background-color: #fff;
}
main {
flex: 1;
padding: 20px;
max-width: 800px;
margin: 20px auto;
background: #fff;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
</style>
</head>
<body>
<header>
<h1>Become a Member</h1>
<nav>
<ul>
<li><a href="#introduction">Introduction</a></li>
<li><a href="#benefits">Benefits</a></li>
<li><a href="#steps">Steps to Join</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="introduction">
<h2>Introduction</h2>
<p>
Welcome! We are excited that you're interested in becoming a member of
our open-source community. Joining our community means becoming part
of a collaborative, innovative, and supportive environment.
</p>
</section>
<section id="benefits">
<h2>Benefits of Membership</h2>
<ul>
<li>Access to exclusive projects and resources</li>
<li>Opportunities for professional development and networking</li>
<li>Participation in community events and workshops</li>
<li>Mentorship and guidance from experienced contributors</li>
<li>Contributing to meaningful and impactful projects</li>
</ul>
</section>
<section id="steps">
<h2>Steps to Join</h2>
<ol>
<li>Fill out the membership application form below.</li>
<li>Submit your form and wait for a confirmation email.</li>
<li>
Follow the instructions in the email to complete your membership
registration.
</li>
<li>Start participating in our projects and community events.</li>
</ol>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>
If you have any questions or need further assistance, please reach out
to us using the form below:
</p>
<form id="contact-form">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required />
<label for="email">Email:</label>
<input type="email" id="email" name="email" required />
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Submit</button>
</form>
</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>