-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathescape_mail_inbox.html
More file actions
67 lines (67 loc) · 1.43 KB
/
Copy pathescape_mail_inbox.html
File metadata and controls
67 lines (67 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>받은 메일함</title>
<style>
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
header, footer {
background-color: #333;
color: white;
padding: 1em;
}
.mail-list {
width: 100%;
max-width: 800px;
margin: 0 auto;
border-collapse: collapse;
}
.mail-list th, .mail-list td {
padding: 0.5em;
border: 1px solid #ccc;
}
.mail-list th {
text-align: left;
}
.mail-list td {
vertical-align: top;
}
.mail-list .read {
background-color: #eee;
}
</style>
</head>
<body>
<header>
<h1>받은 메일함</h1>
</header>
<table class="mail-list">
<thead>
<tr>
<th>제목</th>
<th>보낸 사람</th>
<th>받은 날짜</th>
</tr>
</thead>
<tbody>
<tr class="read">
<td><a href="http://127.0.0.1:5500/escape9_mail_final.html">오늘 할일</a></td>
<td>sender@example.com</td>
<td>2023-02-15 12:34:56</td>
</tr>
<tr>
<td><a href="#">야야야야야야</a></td>
<td>sender2@example.com</td>
<td>2023-02-14 23:45:01</td>
</tr>
</tbody>
</table>
<footer>
<p></p>
</footer>
</body>
</html>