-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat.html
More file actions
46 lines (43 loc) · 1.56 KB
/
chat.html
File metadata and controls
46 lines (43 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=360, initial-scale=1.0">
<title>Together Chat - Chat</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="container">
<div class="chat-header">
<button onclick="goBack()"><</button>
<div class="chat-info">
<div class="profile-pic"></div>
<div class="info">
<p>Username</p>
<small>Online</small>
</div>
</div>
<button>📞</button>
<button>⋮</button>
</div>
<div class="chat-body">
<div class="message sent">haloo</div>
<div class="message sent">nama kamu siapa?</div>
<div class="message received">aku User, salken yahh</div>
<div class="message received">klo kmu siaoa?</div>
<div class="message received">siapa?*</div>
<div class="message sent">gweh Zaffa, salken jg yh</div>
</div>
<div class="chat-footer">
<button>🧷</button>
<input type="text" placeholder="Type here...">
<button class="send-button">
<img src="assets/images/send.svg" alt="Send" />
</button>
<button>😊</button>
<button>📷</button>
<button>🎤</button>
</div>
<script src="assets/js/jsnya.js"></script>
</body>
</html>