-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·77 lines (72 loc) · 1.98 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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Email Element Generators</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link href="style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="underscore.js"></script>
<script type="text/javascript" src="emailElementGen.js"></script>
</head>
<body>
<h1>Email Element Generators</h1>
<h2>Table</h2>
<ul>
<li>
<label for="tableWidth">Width:</label>
<input type="text" id="tableWidth" />
</li>
<li>
<label for="tableColor">BgColor:</label>
<input type="text" id="tableColor" />
</li>
<li>
<label for="tableOutput">Clip:</label>
<textarea id="tableOutput"></textarea>
</li>
</ul>
<h2>Font</h2>
<ul>
<li>
<label for="fontSize">Size:</label>
<input type="text" id="fontSize" />
</li>
<li>
<label for="fontFace">Face:</label>
<input type="text" id="fontFace" />
</li>
<li>
<label for="fontColor">Color:</label>
<input type="text" id="fontColor" />
</li>
<li>
<label for="fontOutput">Clip:</label>
<textarea id="fontOutput"></textarea>
</li>
</ul>
<h2>Link</h2>
<ul>
<li>
<label for="linkHref">href:</label>
<input type="text" id="linkHref" />
</li>
<li>
<label for="linkSize">Size:</label>
<input type="text" id="linkSize" />
</li>
<li>
<label for="linkFace">Face:</label>
<input type="text" id="linkFace" />
</li>
<li>
<label for="linkColor">Color:</label>
<input type="text" id="linkColor" />
</li>
<li>
<label for="linkOutput">Clip:</label>
<textarea id="linkOutput"></textarea>
</li>
</ul>
</body>
</html>