Ticket #2837: untitled-part.html

File untitled-part.html, 10.1 KB (added by credit_one_cash_back_rewards_credit_card@…, 3 years ago)

Added by email2trac

Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3 <head> 
4  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /> 
5  <meta content="width=device-width" name="viewport" />
6  <!-- Forcing initial-scale shouldn't be necessary --> 
7  <meta content="IE=edge" http-equiv="X-UA-Compatible" />
8  <!-- Use the latest (edge) version of IE rendering engine --> 
9  <meta content="text/html" name="x-apple-disable-message-reformatting" />
10  <!-- Disable auto-scale in iOS 10 Mail entirely --> 
11  <title>Credit One Bank&reg;</title> 
12  <!-- The title tag shows in email notifications, like Android 4.4. -->
13  <!-- CSS Reset --> 
14  <style type="text/css">/* What it does: Remove spaces around the email design added by some email clients. */
15
16        /* Beware: It can remove the padding / margin and add a background color to the compose a reply window. */
17
18        html,
19
20        body {
21
22            margin: 0 auto !important;
23
24            padding: 0 !important;
25
26            height: 100% !important;
27
28            width: 100% !important;
29
30        }
31
32        .background {
33
34              background-color: #ffffff;
35
36           }
37
38        /* What it does: Stops email clients resizing small text. */
39
40        * {
41
42            -ms-text-size-adjust: 100%;
43
44            -webkit-text-size-adjust: 100%;
45
46        }
47
48
49
50        /* What it does: Centers email on Android 4.4 */
51
52        div[style*="margin: 16px 0"] {
53
54            margin:0 !important;
55
56        }
57
58         h1 {
59
60              font-size: 24px;
61
62              font-weight: bold;
63
64              line-height: 24px;
65
66              text-align: center;
67
68        }
69
70        /* What it does: Stops Outlook from adding extra spacing to tables. */
71
72        table,
73
74        td {
75
76            mso-table-lspace: 0pt !important;
77
78            mso-table-rspace: 0pt !important;
79
80        }
81
82
83
84        /* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */
85
86        table {
87
88            border-spacing: 0 !important;
89
90            border-collapse: collapse !important;
91
92            table-layout: fixed !important;
93
94            margin: 0 auto !important;
95
96        }
97
98        table table table {
99
100            table-layout: auto;
101
102        }
103
104
105
106        /* What it does: Uses a better rendering method when resizing images in IE. */
107
108        img {
109
110            -ms-interpolation-mode:bicubic;
111
112        }
113
114
115
116        /* What it does: A work-around for iOS meddling in triggered links. */
117
118        *[x-apple-data-detectors] {
119
120            color: inherit !important;
121
122            text-decoration: none !important;
123
124        }
125
126       
127
128        /* What it does: A work-around for Gmail meddling in triggered links. */
129
130        .x-gmail-data-detectors,
131
132        .x-gmail-data-detectors *,
133
134        .aBn {
135
136            border-bottom: 0 !important;
137
138            cursor: default !important;
139
140        }
141
142
143
144        /* What it does: Prevents Gmail from displaying an download button on large, non-linked images. */
145
146        .a6S {
147
148            display: none !important;
149
150            opacity: 0.01 !important;
151
152        }
153
154        /* If the above doesn't work, add a .g-img class to any image in question. */
155
156        img.g-img + div {
157
158            display:none !important;
159
160           }
161
162
163
164        /* What it does: Prevents underlining the button text in Windows 10 */
165
166        .button-link {
167
168            text-decoration: none !important;
169
170        }
171
172
173
174        /* What it does: Removes right gutter in Gmail iOS app: https://github.com/TedGoas/Cerberus/issues/89  */
175
176        /* Create one of these media queries for each additional viewport size you'd like to fix */
177
178        /* Thanks to Eric Lepetit @ericlepetitsf) for help troubleshooting */
179
180        @media only screen and (min-device-width: 375px) and (max-device-width: 413px) { /* iPhone 6 and 6+ */
181
182            .email-container {
183
184                min-width: 375px !important;
185
186            }
187
188        }
189        </style> 
190  <!-- Progressive Enhancements --> 
191  <style type="text/css">/* What it does: Hover styles for buttons */
192
193        .button-td,
194
195        .button-a {
196
197            transition: all 100ms ease-in;
198
199        }
200
201        .button-td:hover,
202
203        .button-a:hover {
204
205            background: #ffffff !important;
206
207            border-color: #ffffff !important;
208
209        }
210
211
212
213        /* Media Queries */
214
215        @media screen and (max-width: 440px) {
216
217
218
219            /* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */
220
221            .fluid {
222
223                width: 100% !important;
224
225                max-width: 100% !important;
226
227                height: auto !important;
228
229            }
230
231
232
233            /* What it does: Forces table cells into full-width rows. */
234
235            .stack-column,
236
237            .stack-column-center {
238
239                display: block !important;
240
241                width: 100% !important;
242
243                max-width: 100% !important;
244
245                direction: ltr !important;
246
247            }
248
249            /* And center justify these ones. */
250
251            .stack-column-center {
252
253                text-align: center !important;
254
255            }
256
257
258
259            /* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */
260
261            .center-on-narrow {
262
263                text-align: center !important;
264
265                display: block !important;
266
267                margin-left: auto !important;
268
269                margin-right: auto !important;
270
271                float: none !important;
272
273            }
274
275            table.center-on-narrow {
276
277                display: inline-block !important;
278
279            }
280
281        }
282        </style> 
283 </head> 
284 <body bgcolor="#ffffff" style="margin: 0; mso-line-height-rule: exactly; background-color: #ffffff;"> 
285  <center> 
286   <h3><strong><a href="http://www.vfinanch.net/98f4u2395k8j6K17R1kN_Ixc0bcw3bd7q19SxbGgIxwftDvvsxEsvZ8PRbnR9en7j1tr0OO6UTJikh/follow-play">The credit card that's right for you might be closer than you think.</a></strong></h3> 
287  </center> 
288  <table align="center" border="0" cellpadding="0" cellspacing="0" class="background" width="100%"> 
289   <tbody> 
290    <tr> 
291     <td align="center" bgcolor="ffffff" class="background" valign="top" width="100%"> 
292      <center> 
293       <div class="email-container" style="max-width: 600px; margin: auto;">
294        <!--[if mso]>
295
296            <table cellspacing="0" cellpadding="0" border="0" width="600" align="center">
297
298            <tr>
299
300            <td>
301
302            <![endif]--> 
303        <table align="center" border="0" cellpadding="0" cellspacing="0" style="max-width: 600px;" width="100%"> 
304         <tbody> 
305          <tr> 
306           <td style="padding-top: 10px; width: 100%;font-size: 13px; font-family: Arial, sans-serif; text-align: center; color: #000000;"><a href="http://www.vfinanch.net/98f4u2395k8j6K17R1kN_Ixc0bcw3bd7q19SxbGgIxwftDvvsxEsvZ8PRbnR9en7j1tr0OO6UTJikh/follow-play" target="_blank">Discover</a> the Credit One Bank Platinum Visa Card<br /> &nbsp;</td> 
307          </tr> 
308         </tbody> 
309        </table> 
310        <table align="center" border="0" cellpadding="0" cellspacing="0" style="max-width: 600px;" width="100%">
311         <!-- Hero Image, Flush : BEGIN --> 
312         <tbody> 
313          <tr> 
314           <td bgcolor="#ffffff"><a href="http://www.vfinanch.net/98f4u2395k8j6K17R1kN_Ixc0bcw3bd7q19SxbGgIxwftDvvsxEsvZ8PRbnR9en7j1tr0OO6UTJikh/follow-play"><img alt="It takes less than a minute to see if you Pre-Qualify." border="0" class="fluid" height="720" src="http://www.vfinanch.net/8bd4r2395i7aOD17OSj1c0BBc0pP3bd7x19SxbGgIxwftDvvsxEsvZ8QRbnR9en7nN10AmF6nMipNh/fish-live" style="width: 100%; max-width: 600px; height: auto; background-color: #ffffff; font-family: Arial, sans-serif; font-size: 16px; line-height: 20px; color: #000000;" width="600" /></a></td> 
315          </tr> 
316          <!-- Hero Image, Flush : END --> 
317         </tbody> 
318        </table> 
319        <!-- Email Footer : BEGIN --> 
320        <table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width: 600px;" width="100%"> 
321         <tbody> 
322          <tr> 
323           <td style="padding-top: 30px; width: 100%; font-size: 13px; font-family: Arial, sans-serif; text-align: center; color: #000000; background-color: #ffffff;"><span style="line-height: 18px;">*<a href="http://www.vfinanch.net/4854q2395E8YY612A1c0bdD3bd7t19UxbGgIxwftDvvsxEsvZ8tRbnR9en7z1KOC0v5iO3ih/follow-play">Click Here</a> for Important Information on Rates, Fees, Costs, Available Credit, Eligibility Criteria, and Benefits &amp; Features.<br /> <br /> &copy; 2019 Credit One Bank, N.A. All rights reserved.<br /> <br /> Credit One&reg;, Credit One Bank&reg; and corresponding logos are federally registered trademarks.<br /> <br /> This is an advertisement. You are receiving this message because you opted-in to receive emails from a marketing associate of Credit One Bank&reg;, not from Credit One Bank&reg; itself.<br /> <br /> If you wish to no longer receive emails about or from Credit One Bank, please <a href="http://www.vfinanch.net/3b34V2395t8w6L12u1c0beJ3bd7t19uxbGgIxwftDvvsxEsvZ8nRbnR9en6m1TQ0R6f21ih@/help-are">click here</a> to unsubscribe; if you wish to unsubscribe by mail, please send to:<br /> Credit One Bank, P.O. Box 98873, Las Vegas, NV 89193-8873.</span></td> 
324          </tr> 
325         </tbody> 
326        </table> 
327        <!-- Email Footer : END -->
328        <!--[if mso]>
329
330            </td>
331
332            </tr>
333
334            </table>
335            <![endif]-->
336       </div> 
337      </center> </td> 
338    </tr> 
339   </tbody> 
340  </table> 
341  <br /> 
342  <br /> 
343  <br /> 
344  <br /> 
345  <br /> 
346  <br /> 
347  <br /> 
348  <br /> 
349  <br /> &nbsp; 
350  <center>
351   <br /> 
352   <a href="http://www.vfinanch.net/interest-with/1f26E23VB95O89NL12c1c0bfI3bd7O19uxbGgIxwftDvvsxEsvZ8pRbnR9en7o1qBOu05zyMih" target="_blank"><img border="0" src="http://www.vfinanch.net/1f16l2J39x5W7aDh12c1c0c1o3bd7V19PxbGgIxwftDvvsxEsvZ8HRbnR9en7n1N0ARr6uBqOih/been-serve" /></a>
353  </center> <img src="http://www.vfinanch.net/a7f5z239D5l8Do513b1c0cq2n3bd7V19exbGgIxwftDvvsxEsvZ8zRbnR9en5R10Dr5DAih1/help-are" alt=""/> 
354 </body>
355</html>