-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 891 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>邮件标题</title>
<style>
/* 添加样式 */
body {
font-family: Arial, sans-serif;
background-color: #F5F5F5;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background-color: #FFFFFF;
padding: 30px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
h1 {
font-size: 24px;
color: #333333;
}
p {
font-size: 16px;
color: #666666;
line-height: 1.5em;
}
a {
color: #0088CC;
text-decoration: none;
}
</style>
</head>
<body>
<!-- 邮件内容 -->
<div class="container">
<h1>邮件标题</h1>
<p>你好,</p>
<p>这里是邮件内容。</p>
<p>请注意查收。</p>
<br>
<p>谢谢!</p>
</div>
</body>
</html>