-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.html
More file actions
78 lines (70 loc) · 2.3 KB
/
help.html
File metadata and controls
78 lines (70 loc) · 2.3 KB
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>Help - Daksh Hande's Website</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #333;
}
.container {
max-width: 800px;
margin: 50px auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #1e90ff;
text-align: center;
}
p {
font-size: 16px;
line-height: 1.5;
}
a {
color: #1e90ff;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.help-container {
text-align: center;
}
.help-container ul {
list-style-type: none;
padding: 0;
}
.help-container li {
margin-bottom: 15px;
}
</style>
</head>
<body>
<div class="container help-container">
<h1>Help</h1>
<p>
Welcome to the help page! If you have any questions or need assistance, please refer to the information below:
</p>
<h2>Frequently Asked Questions</h2>
<ul>
<li><strong>How can I contact Daksh Hande?</strong><br>You can reach out via email at <a href="https://mail.google.com/mail/mu/mp/903/#tl/priority/%5Esmartlabel_personal">handedaksh@gmail.com.com</a>.</li>
<li><strong>How to navigate the website?</strong><br>Use the navigation links at the top to explore different sections.</li>
<li><strong>Issues with the quiz?</strong><br>Ensure you answer all questions before submitting. If the issue persists, contact us.</li>
</ul>
<h2>Contact Information</h2>
<p>
If you still have questions or face issues, feel free to contact us at <a href="https://mail.google.com/mail/mu/mp/903/#tl/priority/%5Esmartlabel_personal">handedaksh@gmail.com</a>.
</p>
</div>
<script src="quiz.js"></script>
</body>
</html>