-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample_teams_messages.html
60 lines (57 loc) · 1.65 KB
/
sample_teams_messages.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Teams Chat Export</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
padding: 20px;
}
.chat-container {
max-width: 800px;
margin: 0 auto;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.chat-message {
margin-bottom: 20px;
padding: 10px;
border-bottom: 1px solid #eee;
}
.chat-message:last-child {
border-bottom: none;
}
.sender {
font-weight: bold;
color: #2b5797;
}
.timestamp {
font-size: 12px;
color: #888;
}
.message-content {
margin-top: 5px;
}
</style>
</head>
<body>
<div class="chat-container">
<div class="chat-message">
<div class="sender">John Doe</div>
<div class="timestamp">Friday, September 20, 2024, 01:45 PM</div>
<div class="message-content"><p>Hello team, just checking in!</p></div>
</div>
<div class="chat-message">
<div class="sender">Jane Smith</div>
<div class="timestamp">Friday, September 20, 2024, 02:12 PM</div>
<div class="message-content"><p>We have a meeting at 3 PM today. Please be prepared.</p></div>
</div>
</div>
</body>
</html>