-
Notifications
You must be signed in to change notification settings - Fork 50
/
index.html
128 lines (128 loc) · 3.62 KB
/
index.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
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Inconsolata|Josefin+Sans:300|Titillium+Web:300" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>MathBot</title>
<script type="text/javascript">
function toggleDiv(id) {
var sty = document.getElementById(id).style;
if (sty.display == 'none' || sty.display == '') sty.display = 'block';
else sty.display = 'none';
}
</script>
</head>
<body>
<div class="navbox">
<p class="float-left" id="server-count-widgit">
<a href="https://discordbots.org/bot/134073775925886976">
<img src="https://discordbots.org/api/widget/servers/134073775925886976.png?noavatar=true&rightcolor=1CBEE9&righttextcolor=FFFFFF&leftcolor=FFFFFF&lefttextcolor=2E2E2E"/>
</a>
</p>
<p>
<a href="https://github.com/DXsmiley/mathbot">Source</a>
<a class="orange" href="https://www.patreon.com/dxsmiley">Support Me!</a>
</p>
</div>
<div class="mobile-navbox">
<button onclick="toggleDiv('mobile-menu')">Menu</button>
<div id="mobile-menu">
<ul>
<li><p><a href="https://github.com/DXsmiley/mathbot">Source</a></p></li>
<li><p><a class="orange" href="https://www.patreon.com/dxsmiley">Support Me!</a></p></li>
</ul>
</div>
</div>
<div class="banner banner-large center-content">
<div class="center-content">
<div>
<div class="center-text">
<h1>MathBot</h1>
</div>
<div class="center-text">
<h2>Mathematics For Discord</h2>
</div>
<div class="center-content">
<a href="https://dxsmiley.github.io/mathbot/add.html" target="_blank">
<button>Add to your server</button>
</a>
</div>
<br>
<div class="center-content">
<a href="https://discord.gg/JbJbRZS" target="_blank">
<button>Join the official server</button>
</a>
</div>
</div>
</div>
<div class="bottom">
<div>
<p>
Features this way
<img src="images/downarrow.png" id="downarrow" />
</p>
</div>
</div>
</div>
<div class="banner center-content">
<div class="center-text">
<h2>Query Wolfram|Alpha</h2>
<img src="images/wa-logo.jpg" />
<p>Right from Discord</p>
</div>
</div>
<div class="banner center-content">
<div class="center-text">
<h2>Format beautiful equations</h2>
<img src="images/tex.png" />
<p>Harness the power of <i>LaTeX</i></p>
</div>
</div>
<div class="banner center-content">
<div class="center-text">
<h2>Fast and powerful calculator</h2>
<img src="images/calculator.png"></img>
<p>With trigonometry and dice rolling</p>
</div>
</div>
<div class="banner center-content">
<div class="center-text">
<h1>What are you waiting for?</h1>
<div class="center-content">
<a href="https://dxsmiley.github.io/mathbot/add.html" target="_blank">
<button>Add it!</button>
</a>
</div>
<br>
<div class="center-content">
<a href="https://discord.gg/JbJbRZS" target="_blank">
<button>Try it out first</button>
</a>
</div>
</div>
</div>
<div class="banner banner-large center-content">
<div class="center-text">
<h2>Mathbot is supported by the following generous patrons:</h2>
<p>Joshua "GodsAperture" Champion</p>
<p>Paradoxica</p>
<p>Sayaks</p>
<p>Sulaker</p>
<a href="https://www.patreon.com/dxsmiley">
<img src="images/patreon.png" />
</a>
<p><br><br></p>
</div>
<div class="bottom">
<div>
<p>
Made with
<img src="images/blue_heart.png" id="heart" />
by DXsmiley
</p>
</div>
</div>
</div>
</body>
</html>