-
Notifications
You must be signed in to change notification settings - Fork 2
/
rules.html
90 lines (89 loc) · 5.75 KB
/
rules.html
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>
<script src="https://kit.fontawesome.com/613e568d39.js" crossorigin="anonymous"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="With over 23,500 Members and 50,000 Messages sent each month, join one of the biggest Java Communities to help, get help and discuss programming in Java."/>
<link rel="stylesheet" href="/css/global/styles.css">
<link rel="stylesheet" href="/css/global/navbar.css">
<link rel="stylesheet" href="/css/global/footer.css">
<link rel="stylesheet" href="/css/pages/rules/rules.css">
<link rel="shortcut icon" href="/assets/ServerLogo.png" type="image/x-icon">
<title>Discord Java Community - Rules</title>
</head>
<body>
<!-- NAVBAR -->
<div class="navbar" id="navbar">
<nav>
<img src="/assets/ServerLogo.png" alt="JavaCommunityLogo">
<button class="hamburger" id="hamburger">
<i class="fa-solid fa-bars"></i>
</button>
<ul class="nav-ul" id="nav-ul">
<li><a href="/index.html">Home</a></li>
<li><a class="active-link" href="/rules.html">Rules</a></li>
<li><a href="/soon.html">Coming soon!</a></li>
</ul>
<div class="nav-right">
<a href="/r/github.html" target="_blank" class="social-btn"><i class="fa-brands fa-github fa-3x"></i></a>
<a href="/r/twitter.html" target="_blank" class="social-btn"><i class="fa-brands fa-twitter fa-3x"></i></a>
<a href="/r/join.html" target="_blank" class="join-btn">Join</a>
</div>
</nav>
</div>
<!-- BODY -->
<!-- RULES -->
<div class="rules-title">
<h1>SERVER RULES</h1>
</div>
<div class="rules-container">
<div class="rule">
<p id="1"><b class="rule-number">#1</b> No spamming, trolling, insults, swearing in a way that's offensive to other users, advertising or NSFW content. </p>
</div>
<div class="rule">
<p id="2"><b class="rule-number">#2</b> Do not attack or insult people based on their ethnicity, nationality, sex, gender, sexual orientation, religion, disabilities or similar characteristics. Violators will be banned from the server and might be reported to Discord. </p>
</div>
<div class="rule">
<p id="3"><b class="rule-number">#3</b> Listen to instructions given by our team. For example, if a staff member requests to stop a conversation, this request should be followed. When in doubt, staff members have the final decision on how these rules are interpreted. </p>
</div>
<div class="rule">
<p id="4"><b class="rule-number">#4</b> Usernames are to be kept in an easily mentionable way. For instance, `߶௵᧫៷` is not easily mentionable and should therefore be changed. <br> ➔ <a style="color: #ff212d;" href="/r/dc-nicknames.html" target="_blank">Read More</a> </p>
</div>
<div class="rule">
<p id="5"><b class="rule-number">#5</b> Do not ask for help with projects that break laws, rules and/or Discord's <a style="color: #ff212d;" href="/r/dc-tos.html" target="_blank">TOS</a> or other policies provided by Discord. Do not request help with ongoing exams. Do not provide or request direct solutions to graded assignments, general guidance is fine. </p>
</div>
<div class="rule">
<p id="6"><b class="rule-number">#6</b> Keep any conversations in English, specific threads might be exempt from this if allowed by staff members. </p>
</div>
<div class="rule">
<p id="7"><b class="rule-number">#7</b> If you need help, create a post in <b class="special-word">#java-help</b> and follow the guidelines outlined in <b class="special-word">#❗︱how-to-get-help</b>. Only DM people for help that have the <b class="special-word">@DMs Welcome!</b> role. </p>
</div>
<div class="rule">
<p id="8"><b class="rule-number">#8</b> Don't ping specific users for help. Do not expect us to do your homework. </p>
</div>
<div class="rule">
<p id="9"><b class="rule-number">#9</b> Political or religious discussions shouldn't take place on this server. </p>
</div>
<div class="rule">
<p id="10"><b class="rule-number">#10</b> Follow Discord's <a style="color: #ff212d;" href="/r/dc-community-guidelines.html" target="_blank">Community Guidelines</a>, <a style="color: #ff212d;" href="/r/dc-tos.html" target="_blank">Terms of Service</a> as well as other policies provided by Discord. </p>
</div>
<div class="rule">
<p id="11"><b class="rule-number">#11</b> Moderative actions (such as warns) should not be discussed in public. In case of questions about moderative actions, the user in question can create a private thread in #general and ping the responsible moderator in that private thread. See <a style="color: #ff212d;" href="/r/dc-threads.html" target="_blank">this support article</a> for creating private threads. </p>
</div>
</div>
<!-- FOOTER -->
<div class="footer-container">
<p>©️ 2023 Discord Java Community <br> We are not affiliated, associated, or endorsed with/by Discord or Oracle.</p>
</div>
<!-- Hamburger Menu JavaScript -->
<script type="text/javascript">
const hamburger = document.getElementById("hamburger");
const navUL = document.getElementById("nav-ul");
hamburger.addEventListener("click", () => {
navUL.classList.toggle("show");
});
</script>
</body>
</html>