-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.html
74 lines (71 loc) · 2.29 KB
/
chat.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/styles.css" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chat with Ron - Wizard Talk</title>
</head>
<body>
<div class="status-bar">
<div class="status-bar__column">
<span>No Service</span>
<i class="fas fa-wifi"></i>
</div>
<div class="status-bar__column">
<span>18:43</span>
</div>
<div class="status-bar__column">
<span>110%</span>
<i class="fas fa-battery-full fa-lg"></i>
<i class="fas fa-bolt"></i>
</div>
</div>
<header class="chat-header">
<a href="chats.html"><i class="fas fa-chevron-left"></i></a>
<span>Ron</span>
<span><i class="fas fa-search"></i><i class="fas fa-bars"></i></span>
</header>
<main class="chat-screen">
<div class="date"><span>Tuesday, June 30, 2020</span></div>
<div class="message">
<div class="message__profile"></div>
<div class="message__main">
<span class="message__main__name">Ron</span>
<span class="message__main__text"
>i'll wait at the gryffindor common room.</span
>
<span class="message__main__time">18:22</span>
</div>
</div>
<div class="my-message">
<div class="my-message__main">
<span class="my-message__text">ok seeya</span>
<span class="my-message__time">18:43</span>
</div>
</div>
</main>
<form class="reply">
<div class="reply__column"><i class="far fa-plus-square fa-2x"></i></div>
<div class="reply__column">
<input type="text" placeholder="Write a message here..." />
<div>
<i class="far fa-grin"></i><i class="fas fa-arrow-circle-up"></i>
</div>
</div>
</form>
<div id="no-mobile">
<span>Your screen is too big.<br />Please use mobile device.</span>
</div>
<div id="no-landscape">
<span
>Your screen is in landscape mode.<br />Please rotate your device.</span
>
</div>
<script
src="https://kit.fontawesome.com/b294cb09b8.js"
crossorigin="anonymous"
></script>
</body>
</html>