-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
73 lines (66 loc) · 3.73 KB
/
Copy pathterms.html
File metadata and controls
73 lines (66 loc) · 3.73 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
<!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 - AccessWidget</title>
<meta name="description" content="Terms of Service for AccessWidget">
<link rel="stylesheet" href="styles.css">
<style>
.legal-content {
padding: 100px 24px;
max-width: 800px;
margin: 0 auto;
}
.legal-content h1 {
font-size: 2.5rem;
margin-bottom: 24px;
text-align: center;
}
.legal-content h2 {
margin-top: 40px;
margin-bottom: 16px;
}
.legal-content p {
margin-bottom: 16px;
color: var(--text-secondary);
}
</style>
</head>
<body class="dark-theme">
<nav class="navbar container">
<div class="logo">
<a href="/" style="color: inherit; text-decoration: none; display: flex; align-items: center;">
<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" style="margin-right:8px;"><circle cx="12" cy="12" r="10"/><path d="M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"/><path d="M2 12h20"/></svg>
AccessWidget
</a>
</div>
</nav>
<main class="legal-content">
<h1>Terms of Service</h1>
<p><em>Last updated: August 2026</em></p>
<h2>1. Acceptance of Terms</h2>
<p>By downloading, embedding, or using AccessWidget, you agree to be bound by these Terms of Service. If you do not agree to these terms, please do not use the software.</p>
<h2>2. License</h2>
<p>AccessWidget is open-source software released under the MIT License. You are free to use, modify, and distribute the software, provided you include the original copyright notice and permission notice in all copies or substantial portions of the software.</p>
<h2>3. Disclaimer of Warranty</h2>
<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
<h2>4. Accessibility Compliance</h2>
<p>AccessWidget is a user-facing tool designed to improve individual viewing experiences. <strong>It does not automatically make your website compliant with WCAG, ADA, or any other legal accessibility requirements.</strong> Website owners are still fully responsible for auditing and fixing the underlying source code of their websites to achieve true compliance.</p>
<h2>5. Changes to Terms</h2>
<p>We reserve the right to modify these terms at any time. Your continued use of the widget constitutes agreement to such modifications.</p>
</main>
<footer class="site-footer">
<div class="container footer-content">
<p>© 2026 Dippan. Released under the MIT License.</p>
<div class="footer-links">
<a href="/docs">Documentation</a>
<a href="/privacy">Privacy Policy</a>
<a href="/terms">Terms of Service</a>
<a href="https://github.com/kdippan/AccessWidget" target="_blank" rel="noopener">GitHub</a>
<a href="https://dippan.com.np" target="_blank" rel="noopener">Author</a>
</div>
</div>
</footer>
</body>
</html>