-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (65 loc) · 3.54 KB
/
index.html
File metadata and controls
65 lines (65 loc) · 3.54 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Central Email Builder</title>
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="stylesheet" href="css/normalize.css" type="text/css">
<link rel="stylesheet" href="css/skeleton.css">
<script src="script.js" type="text/javascript"></script>
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<div class="row title_row">
<h1 title="You're welcome">Central Email Builder</h1>
<div class="guide_link" onclick="window.open('guide.html');" title="Guide to tags">?</div>
</div>
<div class="row textblock_row">
<div class="one column">
<div class="checkbox_div" title="Uncheck to not include in email">
<input type="checkbox" class="checkbox" checked="true"/>
</div>
</div>
<div class="eleven columns textblock_div">
<input type="button" value="-" class="remove_textblock_button" onclick="remove_textblock()" title="Remove paragraph"/>
<textarea class="u-max-full-width u-full-width textblock" placeholder="Paragraph" title="Drag bottom right corner for resize"></textarea>
</div>
</div>
<div class="row textblock_row">
<div class="one column">
<div class="checkbox_div" title="Uncheck to not include in email">
<input type="checkbox" class="checkbox" checked="true"/>
</div>
</div>
<div class="eleven columns textblock_div">
<input type="button" value="-" class="remove_textblock_button" onclick="remove_textblock()" title="Remove paragraph"/>
<textarea class="u-max-full-width u-full-width textblock" placeholder="Paragraph" title="Drag bottom right corner for resize"></textarea>
</div>
</div>
<div class="row textblock_row">
<div class="one column">
<div class="checkbox_div" title="Uncheck to not include in email">
<input type="checkbox" class="checkbox" checked="true"/>
</div>
</div>
<div class="eleven columns textblock_div">
<input type="button" value="-" class="remove_textblock_button" onclick="remove_textblock()" title="Remove paragraph"/>
<textarea class="u-max-full-width u-full-width textblock" placeholder="Paragraph" title="Drag bottom right corner for resize"></textarea>
</div>
</div>
<div id="new_textblock"></div>
<div class="row generate_button_row">
<input type="button" value="Generate Email" class="generate_email_button" onclick="generate_email()" title="Generate email"/>
<input type="button" value="+" class="add_textblock_button" onclick="add_textblock()" title="Add paragraph"/>
</div>
<div class="row email_row">
<hr/>
<div class="twelve columns">
<input type="button" value="Select Text" onclick="copy_email_content()" class="copy_button" title="Copy email text to clipboard"/>
<div class="email_content" id="email_content"></div>
</div>
</div>
</div>
</body>
</html>