-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (76 loc) · 3.37 KB
/
index.html
File metadata and controls
81 lines (76 loc) · 3.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<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 property="og:title" content="Your Discord Bot Name" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://url.com/" />
<meta property="og:image" content="https://url.com/img/coverimage.png" />
<meta property="og:description"
content="This is a great web card to showcase your discord bot" />
<meta name="theme-color" content="#5865F2" />
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="https://url.com/img/favicon.png" type="image/png" />
<title>Your Discord Bot</title>
</head>
<body>
<div>
<div class="card">
<div class="card-header">
<div class="banner" style="background-color: #5862ec"></div>
</div>
<div class="card-body">
<div class="profile-header">
<div class="profil-logo">
<img src="https://url.com/img/profileimage.png" />
</div>
<div class="badges-container">
<div class="badge-item">
<img src="commands_icon.svg" alt="" />
<div class="tooltip tooltip-up">Command Support</div>
</div>
</div>
</div>
<div class="profile-body">
<div class="username">
YourBotName<span>#1234</span>
<div class="mini-badge-super-cool">
<img src="verified.png" />
<div class="tooltip tooltip-up">Verified Bot</div>
Bot
</div>
</div>
<hr />
<div class="basic-infos">
<a href="https://discord.com/oauth2/authorize?client_id=BOTID&permissions=274878286913&scope=bot%20applications.commands"
target="_blank" class="btn mb-12">Add To Server</a>
<a href="https://discord.gg/invite"
target="_blank" class="btn mb-12">More Info</a>
<div class="category-title">Info</div>
<p>
<b style="color: #ddd">Some text here</b><br />
Some other details about your bot here!
Developed by <u>ZIOMARK</u> for the community
</p>
</div>
<div class="basic-infos">
<div class="category-title">MEMBER SINCE</div>
<p>5 Feb 2024</p>
</div>
<div class="roles">
<div class="category-title">Roles</div>
<div class="roles-list">
<div class="role">
<div class="role-color" style="background: #2e84d4"></div>
<p>Bot</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>