-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy-policy.html
More file actions
151 lines (128 loc) · 5.54 KB
/
Copy pathprivacy-policy.html
File metadata and controls
151 lines (128 loc) · 5.54 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/png" href="https://smartcalcworld.com/favicon.png">
<meta charset="UTF-8">
<title>Privacy Policy – SmartCalc World</title>
<meta name="description" content="Privacy Policy for SmartCalc Hub explaining how user information is collected, used, and protected.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://smartcalcworld.com/style.css">
</head>
<body>
<header>
<div class="header-container">
<h1 class="site-title">Privacy Policy</h1>
<p>Free online tools for everyone</p>
<nav>
<a href="https://smartcalcworld.com/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="https://smartcalcworld.com/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>
At SmartCalc Hub, we value the privacy of our visitors.
This Privacy Policy document outlines the types of information
that are collected and recorded and how we use it.
</p>
<h2>Information We Collect</h2>
<p>
We do not collect personal information such as name, email address,
or phone number from visitors. The tools provided on this website
work entirely on the client side.
</p>
<h2>Cookies</h2>
<p>
SmartCalc Hub may use cookies to improve user experience.
Cookies are small files stored on your device that help analyze
user behavior and improve website functionality.
</p>
<h2>Third-Party Services</h2>
<p>
This website may use third-party services such as Google AdSense
to display advertisements. These services may use cookies, JavaScript,
or web beacons to display ads relevant to users.
</p>
<h2>Google AdSense</h2>
<p>
Google, as a third-party vendor, uses cookies to serve ads to users.
Google's use of the DART cookie enables it to serve ads based on
users' visits to this and other websites on the internet.
Users may opt out of personalized advertising by visiting
Google Ad Settings.
</p>
<h2>Consent</h2>
<p>
By using our website, you hereby consent to our Privacy Policy
and agree to its terms.
</p>
</section>
<section>
<h2>Contact Us</h2>
<p>
If you have any questions about this Privacy Policy,
you can contact us through our
<a href="contact.html">Contact page</a>.
</p>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="https://smartcalcworld.com/index.html">Home</a></li>
<li><a href="https://smartcalcworld.com/about.html">About</a></li>
<li><a href="https://smartcalcworld.com/contact.html">Contact</a></li>
<li><a href="https://smartcalcworld.com/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>