-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
131 lines (111 loc) · 4.5 KB
/
Copy pathcontact.html
File metadata and controls
131 lines (111 loc) · 4.5 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/png" href="favicon.png">
<meta charset="UTF-8">
<title>Contact Us – SmartCalc World</title>
<meta name="description" content="Contact SmartCalc World for questions, feedback, or support related to our student calculators and educational tools.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header-container">
<h1 class="site-title">Contact Us</h1>
<p>Free online tools for students</p>
<nav>
<a href="index.html">Home</a>
<span class="nav-disabled">Student Calculators (Coming Soon)</span>
<span class="nav-disabled">Medical Calculators (Coming Soon)</span>
<span class="nav-disabled">Finance Calculators (Coming Soon)</span>
</nav>
<div class="hamburger" id="hamburgerBtn" aria-label="Toggle navigation menu">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div class="mobile-nav" id="mobileNav">
<a href="index.html">Home</a>
<span class="nav-disabled">Student Calculators (Coming Soon)</span>
<span class="nav-disabled">Medical Calculators (Coming Soon)</span>
<span class="nav-disabled">Finance Calculators (Coming Soon)</span>
</div>
</header>
<main>
<section>
<p>
If you have any questions, suggestions, or feedback related to
SmartCalc World, feel free to reach out.
We value user feedback and aim to improve the website continuously.
</p>
<p>
You can contact us for:
</p>
<ul>
<li>Questions about calculators</li>
<li>Reporting errors or issues</li>
<li>Suggestions for new tools</li>
</ul>
</section>
<section>
<h2>How to Reach Us</h2>
<p>
📧 Email: <strong>studentshelpertools@gmail.com</strong>
</p>
</section>
<section>
<h2>Useful Links</h2>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="privacy-policy.html">Privacy Policy</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="privacy-policy.html">Privacy Policy</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Student Tools</h3>
<ul>
<li><a href="https://smartcalcworld.com/percentage-calculator.html">Percentage Calculator</a></li>
<li><a href="https://smartcalcworld.com/cgpa-calculator.html">CGPA Calculator</a></li>
<li><a href="https://smartcalcworld.com/simple-compound-interest-calculator.html">Simple & Compound Interest Calculator</a></li>
<li><span class="coming-soon">MATRIX Calculator (Coming Soon)</span></li>
<li><span class="coming-soon">STATISTIC Calculator (Coming Soon)</span></li>
</ul>
</div>
<div class="footer-section">
<h3>Finance Tools</h3>
<ul>
<li><a href="https://smartcalcworld.com/finance/finance-emi-calculator.html">EMI Calculator</a></li>
<li><a href="https://smartcalcworld.com/finance/finance-sip-calculator.html">SIP Calculator</a></li>
<li><a href="https://smartcalcworld.com/simple-compound-interest-calculator.html">Simple & Compound Interest Calculator</a></li>
<li><span class="coming-soon">FD Calculator (Coming Soon)</span></li>
<li><span class="coming-soon">GST Calculator (Coming Soon)</span></li>
</ul>
</div>
<div class="copyright">
<p>© SmartCalc World. All rights reserved.</p>
</div>
</footer>
<script>
function toggleMenu() {
const nav = document.getElementById('mobileNav');
nav.classList.toggle('active');
}
document.addEventListener('DOMContentLoaded', function() {
document.getElementById('hamburgerBtn').addEventListener('click', toggleMenu);
});
</script>
</body>
</html>