-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
78 lines (71 loc) · 3.14 KB
/
help.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Codeoholics Web Portal - Help</title>
<link rel="stylesheet" href="hstyle.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap">
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="https://media.licdn.com/dms/image/D560BAQFs8jcqNSz0MQ/company-logo_200_200/0/1683385398554?e=2147483647&v=beta&t=Vxw5Erx4dyWuxOIWPZ4lvDPaHJdpqWemRVDJ87WdAf4" alt="Codeoholics Logo">
</div>
<div class="user-actions">
<a href="login.php">Login</a>
<a href="signup.php">Sign Up</a>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="help.html">Help</a></li>
</ul>
</nav>
</header>
<main>
<section class="help">
<h2>Help and Support</h2>
<p>If you have questions, you may find answers in our FAQ section. If not, feel free to contact our support team.</p>
<div class="faq">
<h3>Frequently Asked Questions</h3>
<ul>
<li>
<h4>Q: How do I create an account?</h4>
<p>A: To create an account, click on the "Register" button on the home page and follow the instructions.</p>
</li>
<li>
<h4>Q: How can I reset my password?</h4>
<p>A: Go to the login page and click on the "Forgot Password" link. Follow the steps to reset your password.</p>
</li>
<li>
<h4>Q: Can I change my username?</h4>
<p>A: Usernames cannot be changed once created. Choose your username carefully during registration.</p>
</li>
<!-- Add more FAQ items as needed -->
</ul>
</div>
<div class="contact-info">
<h3>Contact Information</h3>
<ul>
<li>Email: [email protected]</li>
<li>Phone: +1 (123) 456-7890</li>
<li>Address: 123 Main Street, City, Country</li>
</ul>
</div>
</section>
</main>
<footer>
<section class="bottom-box">
<div class="social-links column">
<h2>Socials</h2>
<p> <a href="https://www.linkedin.com/company/codeoholics-club-cmrtc/">LinkedIn</a> | <a href="https://www.instagram.com/codeoholics/">Instagram</a> | <a href="https://discord.gg/rbq6gQWx">Discord</a></p>
</div>
</section>
<p>© 2023 Codeoholics</p>
</footer>
</body>
</html>