-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (46 loc) · 1.53 KB
/
index.html
File metadata and controls
48 lines (46 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=360, initial-scale=1.0">
<title>Together Chat - Contacts</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>T.Chat</h1>
</div>
<div class="contact">
<div class="contact-item" onclick="openChat()">
<span class="status online"></span>
<div class="contact-info">
<p>Username</p>
<small>Online</small>
</div>
</div>
<div class="contact-item" onclick="openChat()">
<span class="status offline"></span>
<div class="contact-info">
<p>Username</p>
<small>Offline</small>
</div>
</div>
<div class="contact-item blocked" onclick="openChat()">
<span class="status blocked-status"></span>
<div class="contact-info">
<p>Username</p>
<small>Blocked</small>
</div>
</div>
</div>
<p class="footer-text">Your contact ends here.</p>
<div class="footer">
<button>Chat</button>
<button>Status</button>
<button>Add</button>
</div>
</div>
<script src="assets/js/jsnya.js"></script>
</body>
</html>