forked from rohKane/discord-bot-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=,, initial-scale=1.0">
<title>Discord Bot Template</title>
</head>
<body>
<h1>Discord Bot Template</h1>
<svg xmlns="http://www.w3.org/2000/svg" width="96" height="96" viewBox="0 0 32 24">
<path id="Shape" d="M8.194,24a.1.1,0,0,1-.029,0A26.821,26.821,0,0,1,.174,20.021a.11.11,0,0,1-.041-.074A26.315,26.315,0,0,1,4.86,2.026.091.091,0,0,1,4.9,1.99,26.613,26.613,0,0,1,11.417,0h.016a.1.1,0,0,1,.089.05,16.407,16.407,0,0,1,.824,1.639,24.589,24.589,0,0,1,3.639-.271,25.354,25.354,0,0,1,3.677.271A17.645,17.645,0,0,1,20.471.05.1.1,0,0,1,20.557,0l.019,0A26.686,26.686,0,0,1,27.089,1.99a.081.081,0,0,1,.042.037A27.548,27.548,0,0,1,31.1,10.4a26.3,26.3,0,0,1,.76,9.546.1.1,0,0,1-.041.073,26.75,26.75,0,0,1-8,3.974.1.1,0,0,1-.029,0,.1.1,0,0,1-.083-.042,21.043,21.043,0,0,1-1.633-2.615.1.1,0,0,1,0-.082.1.1,0,0,1,.059-.058,16.567,16.567,0,0,0,2.5-1.169.1.1,0,0,0,.05-.082.1.1,0,0,0-.041-.085c-.168-.123-.335-.253-.5-.384a.1.1,0,0,0-.062-.021.1.1,0,0,0-.043.01,19.265,19.265,0,0,1-8.018,1.764,19.577,19.577,0,0,1-8.064-1.764.1.1,0,0,0-.041-.009.1.1,0,0,0-.062.022c-.155.125-.321.254-.5.382a.1.1,0,0,0-.04.085.1.1,0,0,0,.05.082,17.469,17.469,0,0,0,2.5,1.17.1.1,0,0,1,.06.059.1.1,0,0,1,0,.081A18.708,18.708,0,0,1,8.276,23.96.105.105,0,0,1,8.194,24ZM21.326,10.023A3.039,3.039,0,0,0,18.451,13.2a3.039,3.039,0,0,0,2.875,3.173,2.727,2.727,0,0,0,2.043-.931A3.336,3.336,0,0,0,24.2,13.2a3.268,3.268,0,0,0-.914-2.334A2.745,2.745,0,0,0,21.326,10.023Zm-10.633,0A3.039,3.039,0,0,0,7.817,13.2a3.039,3.039,0,0,0,2.876,3.173A3.039,3.039,0,0,0,13.569,13.2a3.268,3.268,0,0,0-.914-2.334A2.744,2.744,0,0,0,10.694,10.023Z" transform="translate(-0.001 0)" fill="#FFF"/>
</svg>
</body>
<style>
body {
display: grid;
place-content: center;
place-items: center;
background-color: #7289DA;
min-height: 100vh;
color: #FFFFFF;
font-family: sans-serif;
}
h1 {
font-size: 3rem;
}
</style>
</html>