Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrules.html
More file actions
Latest commit
90 lines (89 loc) · 5.75 KB
/
Copy pathrules.html
File metadata and controls
90 lines (89 loc) · 5.75 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>
<htmllang="en">
<head>
<scriptsrc="https://kit.fontawesome.com/613e568d39.js" crossorigin="anonymous"></script>
<metacharset="UTF-8">
<metahttp-equiv="X-UA-Compatible" content="IE=edge">
<metaname="viewport" content="width=device-width, initial-scale=1.0">
<metaname="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."/>
<linkrel="stylesheet" href="/css/global/styles.css">
<linkrel="stylesheet" href="/css/global/navbar.css">
<linkrel="stylesheet" href="/css/global/footer.css">
<linkrel="stylesheet" href="/css/pages/rules/rules.css">
<linkrel="shortcut icon" href="/assets/ServerLogo.png" type="image/x-icon">
<title>Discord Java Community - Rules</title>
</head>
<body>
<!-- NAVBAR -->
<divclass="navbar" id="navbar">
<nav>
<imgsrc="/assets/ServerLogo.png" alt="JavaCommunityLogo">
<buttonclass="hamburger" id="hamburger">
<iclass="fa-solid fa-bars"></i>
</button>
<ulclass="nav-ul" id="nav-ul">
<li><ahref="/index.html">Home</a></li>
<li><aclass="active-link" href="/rules.html">Rules</a></li>
<li><ahref="/soon.html">Coming soon!</a></li>
</ul>
<divclass="nav-right">
<ahref="/r/github.html" target="_blank" class="social-btn"><iclass="fa-brands fa-github fa-3x"></i></a>
<ahref="/r/twitter.html" target="_blank" class="social-btn"><iclass="fa-brands fa-twitter fa-3x"></i></a>
<ahref="/r/join.html" target="_blank" class="join-btn">Join</a>
</div>
</nav>
</div>
<!-- BODY -->
<!-- RULES -->
<divclass="rules-title">
<h1>SERVER RULES</h1>
</div>
<divclass="rules-container">
<divclass="rule">
<pid="1"><bclass="rule-number">#1</b> No spamming, trolling, insults, swearing in a way that's offensive to other users, advertising or NSFW content. </p>
</div>
<divclass="rule">
<pid="2"><bclass="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>
<divclass="rule">
<pid="3"><bclass="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>
<divclass="rule">
<pid="4"><bclass="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> ➔ <astyle="color: #ff212d;" href="/r/dc-nicknames.html" target="_blank">Read More</a></p>
</div>
<divclass="rule">
<pid="5"><bclass="rule-number">#5</b> Do not ask for help with projects that break laws, rules and/or Discord's <astyle="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>
<divclass="rule">
<pid="6"><bclass="rule-number">#6</b> Keep any conversations in English, specific threads might be exempt from this if allowed by staff members. </p>
</div>
<divclass="rule">
<pid="7"><bclass="rule-number">#7</b> If you need help, create a post in <bclass="special-word">#java-help</b> and follow the guidelines outlined in <bclass="special-word">#❗︱how-to-get-help</b>. Only DM people for help that have the <bclass="special-word">@DMs Welcome!</b> role. </p>
</div>
<divclass="rule">
<pid="8"><bclass="rule-number">#8</b> Don't ping specific users for help. Do not expect us to do your homework. </p>
</div>
<divclass="rule">
<pid="9"><bclass="rule-number">#9</b> Political or religious discussions shouldn't take place on this server. </p>
</div>
<divclass="rule">
<pid="10"><bclass="rule-number">#10</b> Follow Discord's <astyle="color: #ff212d;" href="/r/dc-community-guidelines.html" target="_blank">Community Guidelines</a>, <astyle="color: #ff212d;" href="/r/dc-tos.html" target="_blank">Terms of Service</a> as well as other policies provided by Discord. </p>
</div>
<divclass="rule">
<pid="11"><bclass="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 <astyle="color: #ff212d;" href="/r/dc-threads.html" target="_blank">this support article</a> for creating private threads. </p>
</div>
</div>
<!-- FOOTER -->
<divclass="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 -->
<scripttype="text/javascript">
consthamburger=document.getElementById("hamburger");
constnavUL=document.getElementById("nav-ul");
hamburger.addEventListener("click",()=>{
navUL.classList.toggle("show");
});
</script>
</body>
</html>