-
Notifications
You must be signed in to change notification settings - Fork 3
/
support-page.html
122 lines (83 loc) · 4.56 KB
/
support-page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="support-page.css">
<title>Zenith-Notes Support</title>
<link rel="icon" href="/images/zenithNotes-icon.png" type="image/png">
</head>
<body>
<div class="header">
<header class="header-content">
<a href="#logo" class="logo">
<span class="logo-text">Zenith Notes</span>
</a>
<nav class="nav">
<a href="./index.html" class="nav-link">Home</a>
<a href="./coming-soon.html" class="nav-link">Years</a>
<a href="./coming-soon.html" class="nav-link">Assignments</a>
<a href="./college-selector.html" class="nav-link">Question Papers</a>
<a href="./coming-soon.html" class="nav-link">Question Banks</a>
<a href="./about-us.html" class="nav-link">About Us</a>
<a href="./support-page.html" class="nav-link" id="support-link">Support</a>
</nav>
<a href="./coming-soon.html" class="contact-button">Contact Us</a>
<button type="button" class="menu-button">
<img src="./images/Hamburger.svg" alt="menubutton" class="menu-icon">
</button>
</header>
</div>
<h1>Support</h1>
<div class="cards-grid">
<div class="cards">
<div class="left-box">
<h2>Frequently Asked Questions</h2>
<h3>How do I access study materials?</h3>
<p>You can access study materials by navigating to the respective year and subject pages. All resources are organized by academic year and subject for easy access.</p>
<h3>Can I upload my own notes?</h3>
<p>YCurrently, we don't support user uploads. However, we're constantly updating our resources based on student feedback and curriculum changes.</p>
<h3>Is there a mobile app available?</h3>
<p>We're working on a mobile app! For now, our website is fully responsive and works great on mobile devices.</p>
</div>
</div>
<div class="contact-form">
<h3 class="contact-us-heading">Contact Us</h3>
<form action="#">
<div class="name">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="email">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="Message">
<label for="Message">Message</label>
<textarea id="Message" name="Message" rows = "4" required></textarea>
</div>
<button type="submit" class="submit-button">Send Message</button>
</form>
</div>
</div>
<div class="other-info">
<h2 class="other-info-h2">Other Ways to Reach Us</h2>
<div class="other-info-details">
<div class="contact-method-item">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect width="20" height="16" x="2" y="4" rx="2"/>
<path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"/>
</svg>
<p class="other-info-text">mohd.sarwar.extras@gmail.com</p>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/>
</svg>
<p class = "other-info-text">+91 9391269124</p>
</div>
</div>
</div>
<div class="footer">
<p class="footer-text">© 2024 Zenith Notes. All rights reserved.</p>
</div>
</body>
</html>