-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
115 lines (100 loc) · 5.56 KB
/
Copy pathterms.html
File metadata and controls
115 lines (100 loc) · 5.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0">
<meta name="theme-color" content="#0a0a0f">
<title>Terms of Service | WinActivate</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="icon" type="image/png" href="images/favicon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<div class="background-glow"></div>
<nav class="navbar" aria-label="Main Navigation">
<div class="container nav-container">
<a href="index.html" class="logo">Win<span class="highlight">Activate</span></a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#features">Features</a></li>
<li><a href="index.html#download" class="btn-primary small">Download</a></li>
</ul>
<button class="menu-toggle" id="mobile-menu" aria-label="Toggle navigation menu" role="button" tabindex="0">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</button>
</div>
</nav>
<main class="simple-page">
<div class="simple-container">
<h1 class="simple-title">Terms of Service</h1>
<p class="simple-date">Last updated: January 2026</p>
<div class="simple-section">
<h2>1. Usage Agreement</h2>
<p>WinActivate is provided "as is" without warranties of any kind. You agree that you are responsible for ensuring you have the appropriate license rights for any software you manage.</p>
</div>
<div class="simple-section">
<h2>2. Limitations</h2>
<p>WinActivate is intended for system administration and educational testing. We are not liable for any issues or damages arising from the use of this utility.</p>
</div>
<div class="simple-section">
<h2>3. License & Disclaimer</h2>
<p>WinActivate is an open-source project published under the MIT License. This software is not affiliated with or endorsed by Microsoft Corporation.</p>
</div>
<div class="simple-back">
<a href="index.html" class="btn-primary small"><i class="fa-solid fa-arrow-left"></i> Back to Home</a>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<div class="footer-top">
<div class="footer-col footer-brand-col">
<a href="index.html" class="footer-logo">Win<span class="highlight">Activate</span></a>
<p class="footer-desc">The simplest, safest, and most transparent way to manage Microsoft Windows & Office product licenses.</p>
</div>
<div class="footer-col">
<h4>Navigation</h4>
<ul class="footer-menu">
<li><a href="index.html#home"><i class="fa-solid fa-chevron-right"></i> Home</a></li>
<li><a href="index.html#features"><i class="fa-solid fa-chevron-right"></i> Features</a></li>
<li><a href="index.html#download"><i class="fa-solid fa-chevron-right"></i> Download</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Legal</h4>
<ul class="footer-menu">
<li><a href="privacy.html"><i class="fa-solid fa-chevron-right"></i> Privacy Policy</a></li>
<li><a href="terms.html"><i class="fa-solid fa-chevron-right"></i> Terms of Service</a></li>
</ul>
</div>
<div class="footer-col footer-social-col">
<h4>Community</h4>
<div class="footer-social-grid">
<a href="https://github.com/tuhinx/win-activate" target="_blank" rel="noopener" class="social-btn github" title="GitHub" aria-label="GitHub Repository">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://www.youtube.com/@TuhinxBD" target="_blank" rel="noopener" class="social-btn youtube" title="YouTube" aria-label="YouTube Channel">
<i class="fa-brands fa-youtube"></i>
</a>
<a href="https://www.facebook.com/tuhinxbd" target="_blank" rel="noopener" class="social-btn facebook" title="Facebook" aria-label="Facebook Page">
<i class="fa-brands fa-facebook"></i>
</a>
</div>
</div>
</div>
<div class="footer-bottom-bar">
<div class="footer-bottom-info">
<p>© 2026 <strong>WinActivate</strong>. All rights reserved. | Developed by <a href="https://github.com/tuhinx" target="_blank" rel="noopener" class="dev-link">Tuhinx</a></p>
</div>
</div>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>