-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
96 lines (94 loc) · 2.59 KB
/
Copy pathcontact.php
File metadata and controls
96 lines (94 loc) · 2.59 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
91
92
93
94
95
96
<?php include "header.php"; ?>
<div class="scrollmenu">
<a href="index.html">Home</a>
<a href="commands.php">Commands</a>
<a href="contact.php" class="active">Contact</a>
<a href="https://discord.gg/pH2qMdFpAn">Support</a>
<a href="https://discord.com/login">Login</a>
<a href="https://classroom.google.com/c/MjIyNDU4OTI2MTQ1?cjc=gy7vrnj">Report</a>
<a href="admin.php">Admin Panel</a>
</div>
</body>
</html>
<!DOCKTYPE>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Profiles or Contacts for the Communication-Bot">
<title>Communication Bot</title>
<style>
table, td, th, thead{
border: white solid 1px;
border-radius: 10px;
height: 50px;
border-collapse: collapse;
padding: 5px;
}
a{
color: grey;
}
a:hover{
color: white;
}
.invite-non-link{
color: grey;
}
.invite-non-link:hover{
color: white;
}
.scrolling{
overflow-x: scroll;
}
.container{
padding: 5px;
border-radius: 5px;
margin: auto;
color: white;
background: #23272a
}
</style>
</head>
<body>
<br>
<div class="scrolling container">
<h2>CONTACTS</h2>
<table>
<thead>
<th>Profiles</th>
<th>Links</th>
</thead>
<tr>
<td>Discord</td>
<td><a href="https://discord.gg/pH2qMdFpAn">https://discord.gg/pH2qMdFpAn</a></td>
</tr>
<tr>
<td>Gmail</td>
<td><a class="invite-non-link">dremixbotdeveloper@gmail.com</a></td>
</tr>
<tr>
<td>Google Classroom</td>
<td><a href="https://classroom.google.com/c/MjIyNDU4OTI2MTQ1?cjc=gy7vrnj">https://classroom.google.com/c/MjIyNDU4OTI2MTQ1?cjc=gy7vrnj</a></td>
</tr>
<tr>
<td>Whatsapp</td>
<td><a href="https://chat.whatsapp.com/JOE3MaTaMldHBwDdB50P5w">https://chat.whatsapp.com/JOE3MaTaMldHBwDdB50P5w</a></td>
</tr>
<tr>
<td>Telegram</td>
<td><a href="https://t.me/communicationbotsupport">https://t.me/communicationbotsupport</a></td>
</tr>
<tr>
<td>Android App</td>
<td><a href="Communication Bot.apk">download</a></td>
</tr>
</table>
</div>
<br>
<div class="container">
<p><h1><b>Note:</b></h1>
If you have any doubts about installing the application file ask us immedeately from the above profiles.<br>
We also have the Windows, Mac and Linux versions of the app, if you need it ask us from the above profiles</p>
</div>
</body>
</html>