forked from haideralipunjabi/youtuber-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdiscord.html
115 lines (91 loc) · 4.41 KB
/
discord.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
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>
<head>
<style>
.server-icon {
border-radius: 50%;
transition: 0.5s;
width: 35px;
}
.server-icon:hover {
border-radius: 20%;
transition: 0.5s;
}
</style>
<!--<script type="text/javascript">
window['nitroAds'] = window['nitroAds'] || { createAd: function () { window.nitroAds.queue.push(["createAd", arguments]) }, queue: [] };
</script>
<script async src="https://s.nitropay.com/ads-463.js"></script>-->
<script data-ad-client="ca-pub-1474629225008403" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<link rel="icon" href="mr_quackers.png">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Discord | Will M</title>
<link rel="stylesheet" href="//willm.xyz/assets/css/font-awesome.min.css" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!-- Bulma Version 0.6.0 -->
<link rel='stylesheet' href='https://d33wubrfki0l68.cloudfront.net/css/a1df3e70a9c91ae88dc3ad13ead6a92709bed058/css/bulma/bulma-theme.css'/>
<style type="text/css">
html,body {
font-family: 'Open Sans';
}
.control { border-radius: 0px !important }
.clear { background-color: #e80e07 !important }
.sub { background-color: #00d404 !important }
.is-expanded { border-radius: 0px !important }
</style>
</head>
<body>
<div class="hero-head" id="navbar-container">
</div>
<section class="section is-fullheight is-default is-bold ">
<div class="container is-fluid">
<div class="container">
<h1 style="font-size: 50px" class="title has-text-centered"><img class="server-icon" src="https://cdn.discordapp.com/icons/339188357253038092/e16612ed99792901ca217628cd145a67.webp"></img> Will's World</h1>
<h1 style="font-size: 24px !important; margin: 5px !important" class="title has-text-centered"><img src="https://discordia.me/uploads/badges/staff_badge.png" width="24px"> Discord Mods <span id="scount">...</span></h1>
<div style="text-align: center" id="staff">Loading...</div><br>
<h1 style="font-size: 24px !important; margin: 5px !important" class="title has-text-centered"><svg class="icon-360yEu" aria-hidden="false" width="24" height="24" viewBox="0 0 8 12"><path d="M4 0L0 4V8L4 12L8 8V4L4 0ZM7 7.59L4 10.59L1 7.59V4.41L4 1.41L7 4.41V7.59Z" fill="#7289DA"></path><path d="M2 4.83V7.17L4 9.17L6 7.17V4.83L4 2.83L2 4.83Z" fill="#7289DA"></path></svg>Discord Boosters <span id="bcount">...</span></h1>
<div style="text-align: center" id="boost">Loading...</div>
<hr>
<a href="https://discord.gg/DvXWrqb"><button style="background-color: #7289DA" class="button is-dark is-fullwidth"><span id="online">Join Discord Server</span></button></a>
</div>
</div>
<div id="nitropay"></div>
<!--
<script type="text/javascript">
window['nitroAds'].createAd('nitropay', {
"refreshLimit": 10,
"refreshTime": 90,
"renderVisibleOnly": false,
"refreshVisibleOnly": true,
"sizes": [
[
"320",
"50"
]
],
"report": {
"enabled": true,
"wording": "Report Ad",
"position": "bottom-right"
},
"mediaQuery": "(min-width: 320px) and (max-width: 767px)"
});
</script>-->
</section>
<div class="hero-foot" id="footer-container">
</div>
<script src="assets/js/jquery-3.2.1.min.js" charset="utf-8"></script>
<script src="assets/js/bulma.js" charset="utf-8"></script>
<script src="assets/js/main.js" charset="utf-8"></script>
<script src="assets/js/videos.js" charset="utf-8"></script>
</body>
<script>
window.fetch('https://bruhapi.syntaxpwn.repl.co/rolecount').then(r => r.json().then(c => document.querySelector('#staff').innerHTML = c.staff));
window.fetch('https://bruhapi.syntaxpwn.repl.co/rolecount').then(r => r.json().then(c => document.querySelector('#boost').innerHTML = c.boost))
window.fetch('https://bruhapi.syntaxpwn.repl.co/rolecount').then(r => r.json().then(c => document.querySelector('#bcount').innerHTML = c.boostcount));
window.fetch('https://bruhapi.syntaxpwn.repl.co/rolecount').then(r => r.json().then(c => document.querySelector('#scount').innerHTML = c.staffcount));
window.fetch('https://discordapp.com/api/guilds/339188357253038092/widget.json').then(r => r.json().then(c => document.querySelector('#online').innerHTML = "Join Discord Server (" + c.presence_count + " Online)"));
</script>
</html>