-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat.html
More file actions
27 lines (27 loc) · 809 Bytes
/
chat.html
File metadata and controls
27 lines (27 loc) · 809 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
margin: 0;
padding: 0;
overflow: hidden;
}
#chat-iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
#hidden-iframe {
display: none;
}
</style>
</head>
<body>
<iframe id="chat-iframe" src="https://botrix.live/widgets/chat/?bid=2w7ZKm8ZK%2FXJYT1dhn5csA&bots=false&emojis=true&hideCommands=false&hideMessages=true&hideMessagesSeconds=29&fontSize=22&trovo=true&twitch=true&youtube=false&kick=false&platformIcon=false&theme=bubbles" loading="eager" width="425" height="600"></iframe>
<iframe id="hidden-iframe" src="https://chat.restream.io/embed?token=dc1bd026-b4a2-49c2-a9e0-69e51a93ce15" loading="eager"></iframe>
</body>
</html>