-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage.htm
112 lines (112 loc) · 3.2 KB
/
message.htm
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<html>
<head>
<title>
Messages
</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet"/>
<!-- <style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #ffffff;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 15px;
border-bottom: 1px solid #e1e8ed;
}
.header h1 {
font-size: 20px;
margin: 0;
}
.header .icons {
display: flex;
gap: 15px;
}
.header .icons i {
font-size: 20px;
color: #000000;
}
.search-bar {
padding: 10px 15px;
border-bottom: 1px solid #e1e8ed;
}
.search-bar input {
width: 100%;
padding: 10px;
border: 1px solid #e1e8ed;
border-radius: 20px;
font-size: 14px;
}
.message {
display: flex;
align-items: flex-start;
padding: 15px;
border-bottom: 1px solid #e1e8ed;
}
.message img {
border-radius: 50%;
width: 40px;
height: 40px;
margin-right: 10px;
}
.message .content {
max-width: 80%;
}
.message .content .name {
font-weight: bold;
font-size: 14px;
}
.message .content .username {
color: #657786;
font-size: 14px;
}
.message .content .date {
color: #657786;
font-size: 14px;
}
.message .content .text {
font-size: 14px;
color: #000000;
}
</style> -->
</head>
<body>
<div class="header">
<h1>
Messages
</h1>
<div class="icons">
<i class="fas fa-cog">
</i>
<i class="fas fa-envelope">
</i>
</div>
</div>
<div class="search-bar">
<input placeholder="Search Direct Messages" type="text"/>
</div>
<div class="message">
<img alt="Profile picture of the user" height="40" src="https://oaidalleapiprodscus.blob.core.windows.net/private/org-LmQ09WWGIGwOeeA4ArnRw0x5/user-uJPET5fjNenSso8wCETWVNOp/img-LLzijdJtCgIRsOqzT0tNIOKF.png?st=2024-09-13T23%3A53%3A31Z&se=2024-09-14T01%3A53%3A31Z&sp=r&sv=2024-08-04&sr=b&rscd=inline&rsct=image/png&skoid=d505667d-d6c1-4a0a-bac7-5c84a87759f8&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2024-09-13T23%3A30%3A25Z&ske=2024-09-14T23%3A30%3A25Z&sks=b&skv=2024-08-04&sig=1SDHWlUZ2dcOi5QPMMwXUjjusWCxXZPrO8WJTW3VIwc%3D" width="40"/>
<div class="content">
<div>
<span class="name">
Anshit Kumar Srivastava
</span>
<span class="username">
@Anshaysi
</span>
<span class="date">
· Jul 11
</span>
</div>
<div class="text">
Read it as article and forget it . no need to reply a
</div>
</div>
</div>
</body>
</html>