-
Notifications
You must be signed in to change notification settings - Fork 1
/
email.html
122 lines (122 loc) · 3.7 KB
/
email.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
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
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
* {
box-sizing: border-box;
margin: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
</style>
<title>Email preview</title>
</head>
<body>
<style>
* {
font-family: sans-serif;
}
</style>
<table
border="0"
cellpadding="0"
cellspacing="0"
width="100%"
align="center"
>
<tr>
<td>
<table
border="0"
cellpadding="0"
cellspacing="0"
width="600"
align="center"
>
<tr>
<td width="600">
<img
src="https://pickshot.s3.ap-northeast-2.amazonaws.com/landing-page/preview.png"
alt="preview"
width="600"
height="4700"
style="display: block"
/>
</td>
</tr>
<tr align="center">
<td>
<table cellspacing="10">
<tr align="center">
<td>
<b style="font-weight: bold"> PICKSHOT Download </b>
</td>
</tr>
<tr align="center">
<td>
<a href="#"
><img
src="https://pickshot.s3.ap-northeast-2.amazonaws.com/landing-page/google.png"
width="150"
alt=""
/></a>
<a href="#"
><img
src="https://pickshot.s3.ap-northeast-2.amazonaws.com/landing-page/apple.png"
width="150"
alt=""
/></a>
</td>
</tr>
<tr align="center">
<td>
<b style="font-weight: bold">
PICKSHOT의 평소 소식이 궁금하다면?
</b>
</td>
</tr>
<tr align="center">
<td style="padding: 1rem 2rem">
<a
href="#"
style="
border-width: 2px;
border-color: #5e00ff;
border-style: solid;
border-radius: 1rem;
padding-top: 1rem;
padding-bottom: 1rem;
padding-left: 2rem;
padding-right: 2rem;
text-decoration: none;
color: #5e00ff;
"
>이메일 구독하기</a
>
</td>
</tr>
<tr align="center">
<td>
주류 문화 커뮤니티<br />
PICKSHOT<br />
<a href="mailto:[email protected]"
><br />
<br />
수신을 원하지 않는 경우 <a href="">여기</a>를 눌러주세요
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>