-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (49 loc) · 1.78 KB
/
index.html
File metadata and controls
56 lines (49 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Canary Chat (Alpha) </title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="server-list">
<div style="width:50px; height:50px; border-radius:100%; background-color: #2f2f30; display:flex; align-items:center; justify-content:center;">
<img src="https://files.catbox.moe/yty3jy.png" height="30px" />
</div>
</div>
<div class="channel-list">
<div class="channel"><p>#main-chat</p></div>
<div class="channel"><p>#game-chat</p></div>
</div>
<div class="message-area">
<div class="alert">
<span class="closebtn" onclick="this.parentElement.style.display='none';">×</span>
<strong>Heads up</strong> This client is a WIP. It doesn't work.
</div>
<div class="message">
<img src="https://files.catbox.moe/j7tzqh.jpg" />
<p data-user>RiSK</p>
<p>Hello, world!</p>
</div>
<div class="message">
<img src="https://files.catbox.moe/htc467.webp"/>
<p data-user>QuizzityMC</p>
<p>Hello!</p>
</div>
<div class="input-area">
<input type="text" id="user-input" name="user-input" placeholder="Type your message">
</div>
</div>
<div class="members-list">
<div class="member">
<img src="https://files.catbox.moe/j7tzqh.jpg" />
<p>RiSK</p>
</div>
<div class="member">
<img src="https://files.catbox.moe/htc467.webp" />
<p>QuizzityMC</p>
</div>
</div>
</body>
</html>