-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
38 lines (34 loc) · 1.55 KB
/
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
<html>
<head>
<meta charset="utf-8">
<title>Inky Inliner</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/foundation/6.1.2/foundation.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="row" data-inliner>
<div class="small-6 columns">
<label for="htmlInput">HTML</label>
<textarea class="inliner-textarea" data-input-html id="htmlInput" placeholder="Paste the complete HTML of your email here."></textarea>
<label for="cssInput">CSS</label>
<textarea class="inliner-textarea" data-input-css id="cssInput" placeholder="Paste all of your email's CSS, including Foundation."></textarea>
<button type="button" class="large expanded button" data-compile>Inline!</button>
<label>
<input type="checkbox" name="checkbox" checked data-compress>
Compress HTML
</label>
</div>
<div class="small-6 columns">
<p><a data-output-copy>Copy to Clipboard</a></p>
<label>Output</label>
<div class="inliner-output" data-output></div>
<div class="inliner-error" data-error style="display: none;">
<p>There was an error inlining your code. Check that your HTML and CSS have no errors and try again.</p>
<p>If you're still having issues, <a href="mailto:foundation@zurb.com">send us an email</a> and we'll help you sort it out.</p>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.2.1.min.js"></script>
<script src="script.js"></script>
</body>
</html>