-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
90 lines (85 loc) · 3.56 KB
/
terms.html
File metadata and controls
90 lines (85 loc) · 3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="images/avatar.ico" />
<title>Terms of Service | NumericBoss</title>
<meta name="author" content="bossbadi" />
<meta
name="description"
content="Dice rolls, coin flips, arithmetic calculator, graph ordered-pairs, random number generator"
/>
<meta property="og:image" content="https://numericboss.ml/images/avatar.png" />
<meta content="#61ff7b" data-react-helmet="true" name="theme-color" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/main.css" />
<script src="js/navScroll.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg sticky-top">
<div class="container">
<a class="navbar-brand" href="index.html"><img src="images/avatar.ico" height="36" /></a>
<a class="navbar-brand" href="index.html">NumericBoss</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="invite.html" target="_blank">Invite</a>
</li>
<li class="nav-item">
<a class="nav-link" href="terms.html">Terms</a>
</li>
<li class="nav-item">
<a class="nav-link" href="privacy.html">Privacy</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="container header">
<h1>Terms of Service</h1>
</section>
<section class="container text-container">
<p>
By having NumericBoss in your Discord server or running its commands, you agree to the following terms of service.
</p>
<h4 id="rules">Rules</h4>
<p>Breaking any of these rules may revoke your access to the application and its services.</p>
<ol>
<li>You may not use the bot if you are under the legal age to use Discord.</li>
<li>
You may not use the bot for malicious intent, including sending links to viruses, phishing, and other
questionable content.
</li>
<li>You may not use the bot to send messages containing racism, homophobia, sexism, or slurs.</li>
<li>You may not use the bot to send NSFW and other inappropriate content in non-NSFW Discord text channels.</li>
<li>You may not use the bot to advertise, including other Discord servers and products.</li>
<li>
Using user-bots, macros, scripts, auto-typers, and other forms of automation to run commands is prohibited.
</li>
</ol>
<h4 id="liability">Liability</h4>
<p>
The developer is not liable for any infractions caused by the use of this application, including but not limited
to breaking Discord's Terms of Service and/or Community Guidelines.
</p>
<h4 id="affiliations">Affiliations</h4>
<p>This application is not affiliated with, endorsed, or created by Discord Inc.</p>
</section>
<script src="js/bootstrap.bundle.min.js"></script>
</body>
</html>