forked from Its-Aman-Yadav/Community-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
support.html
152 lines (131 loc) · 4.41 KB
/
support.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support - Open Source Community</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
header h1 {
margin: 0;
}
nav ul {
padding: 0;
list-style: none;
text-align: center;
}
nav ul li {
display: inline;
margin: 0 10px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
main {
padding: 20px;
max-width: 800px;
margin: 20px auto;
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section {
margin-bottom: 20px;
}
footer {
text-align: center;
padding: 10px 0;
background: #333;
color: #fff;
position: fixed;
width: 100%;
bottom: 0;
}
form label {
display: block;
margin-top: 10px;
}
form input, form textarea {
width: 100%;
padding: 10px;
margin-top: 5px;
}
form button {
padding: 10px 20px;
background: #333;
color: #fff;
border: none;
margin-top: 10px;
cursor: pointer;
}
.faq {
margin-bottom: 20px;
}
.faq h2, .faq p {
margin: 5px 0;
}
</style>
</head>
<body>
<header>
<h1>Support</h1>
<nav>
<ul>
<li><a href="#general-info">General Info</a></li>
<li><a href="#faqs">FAQs</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="general-info">
<h2>General Information</h2>
<p>Welcome to the support page of our open-source community. Here you will find resources and contact information to help you with any questions or issues you may encounter. Our support team is dedicated to providing you with the assistance you need.</p>
</section>
<section id="faqs" class="faq">
<h2>Frequently Asked Questions</h2>
<h3>How do I join the community?</h3>
<p>You can join our community by visiting the 'Become a Member' page and filling out the membership application form.</p>
<h3>What projects can I contribute to?</h3>
<p>We have a variety of projects in different domains such as web development, data science, and machine learning in the world of open source.</p>
<h3>How can I get help with a project?</h3>
<p>If you need help with a project, you can contact our support team using the form below or participate in our community forums.</p>
</section>
<section id="contact">
<h2>Contact Support</h2>
<p>If you need further assistance, please fill out the form below and our support team will get back to you as soon as possible:</p>
<form id="support-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="issue">Issue:</label>
<textarea id="issue" name="issue" required></textarea>
<button type="submit">Submit</button>
</form>
</section>
</main>
<footer>
<p>© 2024 Open Source Community. All rights reserved.</p>
</footer>
<script>
document.getElementById('support-form').addEventListener('submit', function(event) {
event.preventDefault();
alert('Thank you for reaching out. Our support team will get back to you soon.');
document.getElementById('support-form').reset();
});
</script>
</body>
</html>