-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
103 lines (93 loc) · 5.14 KB
/
terms.html
File metadata and controls
103 lines (93 loc) · 5.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>INOSX - Terms of Service</title>
<style>
:root{
--bg:#0b1020;--paper:#0f1a33;--text:#e6f0ff;--accent:#7dd3fc;--secondary:#a78bfa;--border:rgba(125,211,252,0.28);
}
body {
font-family: Arial, sans-serif;
line-height: 1.7;
max-width: 900px;
margin: 0 auto;
padding: 32px 20px 20px 20px;
color: var(--text);
background: radial-gradient(900px 450px at 15% 10%, rgba(96,165,250,0.10), transparent 60%), var(--bg);
}
h1 {
margin-top: 8px;
background: linear-gradient(135deg, #7dd3fc 0%, #8b5cf6 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
border-bottom: 2px solid rgba(125,211,252,0.28);
padding-bottom: 12px;
}
p { margin-bottom: 1.2em; }
.address {
margin: 20px 0; padding: 15px; background-color: rgba(148,163,184,0.08); border-radius: 8px; border:1px solid var(--border);
}
.contact { color: #cbd5e1; }
.last-updated { margin-top: 40px; font-style: italic; color: #cbd5e1; }
a { color: var(--accent); }
</style>
</head>
<body>
<h1>Terms of Service</h1>
<p>We, INOSX, Inc, a Delaware C Corporation and is located at:</p>
<div class="address">
9450 Sw Gemini Drive Beaverton, Oregon, 97008, United States
</div>
<p>For any inquiries regarding these Terms, please reach out to us at <a href="mailto:support@inosx.com">support@inosx.com</a>.</p>
<p>Your acceptance of these Terms is implied upon using our Platform. If you do not agree with them, refraining from using our Platform is necessary.</p>
<p>For non-consumer entities, confirmation of authority to bind the business to these Terms is required. References to "you" or "your" pertain to the business entity accepting these Terms unless specified otherwise.</p>
<h2>ACCOUNT CREATION AND SECURITY</h2>
<p>Account creation is mandatory to access our Platform. Accuracy and currency of information provided during registration are essential. Upon registration, you are granted a personal, non-transferable right and license to use the Platform for internal business purposes until termination as outlined in these Terms.</p>
<p>Safeguarding your account details, including username and password, is imperative. Prompt notification to us at <a href="mailto:support@inosx.com">support@inosx.com</a> is required if unauthorized access is suspected.</p>
<!-- Continue with the rest of the terms... -->
<p class="last-updated">This terms was last updated on June 3, 2024.</p>
<!-- INOSX Footer -->
<style>
.inosx-footer{margin-top:40px;background:linear-gradient(135deg,#2a4b7a 0%,#5f5dbd 100%);color:#fff}
.inosx-footer a{color:#fff;text-decoration:none;opacity:.9}
.inosx-footer a:hover{opacity:1}
.inosx-footer .container{max-width:1200px;margin:0 auto;padding:24px 16px}
.inosx-footer .grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:20px}
.inosx-footer h4{margin:0 0 8px 0;font-size:1.05rem}
.inosx-footer ul{list-style:none;margin:0;padding:0}
.inosx-footer li{margin:6px 0}
.inosx-footer .brand{display:flex;align-items:center;gap:8px;font-weight:700}
.inosx-footer .badge{width:24px;height:24px;border-radius:6px;background:rgba(255,255,255,.2);display:inline-flex;align-items:center;justify-content:center}
.inosx-footer .legal{border-top:1px solid rgba(255,255,255,.25);padding-top:10px;margin-top:12px;opacity:.9;font-size:.92rem}
.inosx-footer .contact-box{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.25);border-radius:10px;padding:10px}
@media(max-width:800px){.inosx-footer .grid{grid-template-columns:1fr;}}
</style>
<footer class="inosx-footer">
<div class="container">
<div class="grid">
<div>
<div class="brand"><span class="badge">💠</span><span>INOSX</span></div>
<p style="margin:6px 0 0 0">INOSX, Inc. • USA Corporation</p>
</div>
<div>
<h4>Company</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Products & Services</a></li>
<li><a href="terms.html">Terms of Service</a></li>
</ul>
</div>
<div>
<h4>Contact</h4>
<div class="contact-box">
<div><strong>Email</strong><br><a href="mailto:contact@inosx.com">contact@inosx.com</a></div>
<div style="margin-top:6px">9450 SW Gemini Dr, Beaverton, OR 97008, USA</div>
</div>
</div>
</div>
<div class="legal">© 2025 INOSX, Inc. All rights reserved.</div>
</div>
</footer>
</body>
</html>