-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathterms.html
More file actions
100 lines (92 loc) · 3.51 KB
/
terms.html
File metadata and controls
100 lines (92 loc) · 3.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service — CyberShield</title>
<link rel="stylesheet" href="style.css">
<style>
.legal-container {
max-width: 800px;
margin: 80px auto;
padding: 40px;
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 24px;
}
h1 { color: var(--accent-1); margin-bottom: 24px; }
h2 { color: var(--text-color); margin-top: 32px; margin-bottom: 16px; }
p { color: var(--subtitle-color); line-height: 1.8; margin-bottom: 16px; }
.back-link {
display: inline-block;
margin-bottom: 24px;
color: var(--accent-1);
text-decoration: none;
font-weight: 600;
transition: transform 0.2s;
}
.back-link:hover { transform: translateX(-4px); }
@media (max-width: 768px) {
.legal-container {
margin: 40px 16px;
padding: 24px;
border-radius: 16px;
}
h1 { font-size: 28px; }
h2 { font-size: 20px; }
}
</style>
</head>
<body>
<div class="wrapper">
<div class="legal-container">
<a href="index.html" class="back-link">← Back to Scanner</a>
<h1>Terms of Service</h1>
<p>Last updated: May 11, 2026</p>
<h2>1. Acceptance of Terms</h2>
<p>By accessing or using CyberShield, you agree to be bound by these Terms of Service and all applicable laws and regulations.</p>
<h2>2. Use License</h2>
<p>CyberShield is provided as a security tool for personal and educational use. You may not use the service to automate high-volume scans or attempt to bypass the API rate limits.</p>
<h2>3. Disclaimer</h2>
<p>The security results are provided "as is" based on the Google Safe Browsing database. While highly accurate, CyberShield does not guarantee 100% detection of all threats. Always exercise caution when visiting unknown websites.</p>
<h2>4. Limitation of Liability</h2>
<p>CyberShield and its developers shall not be liable for any damages arising out of the use or inability to use the scanner.</p>
</div>
<!-- Main Footer -->
<footer class="main-footer">
<div class="wrapper">
<div class="footer-content">
<div class="footer-brand">
<div class="logo-badge">
<div class="dot"></div>
CyberShield
</div>
<p>Providing real-time URL security analysis to protect your digital footprint from evolving threats.</p>
</div>
<div class="footer-links">
<div class="footer-col">
<h4>Legal</h4>
<a href="privacy.html">Privacy Policy</a>
<a href="terms.html">Terms of Service</a>
</div>
<div class="footer-col">
<h4>Resources</h4>
<a href="docs.html">Documentation</a>
<a href="https://github.com/Mrinalray/Cybershield_URL" target="_blank" rel="noopener noreferrer">GitHub Repo</a>
</div>
</div>
</div>
<div class="footer-bottom">
© 2026 CyberShield URL Scanner. Built for Security — Powered by Google Safe Browsing API.
</div>
</div>
</footer>
</div>
<script>
(function initTheme() {
const theme = localStorage.getItem('theme') || 'dark';
if (theme === 'light') document.body.classList.add('light-mode');
})();
</script>
</body>
</html>