-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguide.html
More file actions
54 lines (54 loc) · 2.01 KB
/
guide.html
File metadata and controls
54 lines (54 loc) · 2.01 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
<!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>
<!--script type="text/javascript">bkLib.onDomLoaded(nicEditors.allTextAreas);</script-->
<!--script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></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>Guide to Tags</h1>
</div>
<div class"row list_row">
<table class="u-full-width">
<thead>
<tr>
<th>Style</th>
<th>Font</th>
<th>Example</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bold</td>
<td><b>word</b></td>
<td><b>word</b></td>
</tr>
<tr>
<td>Italic</td>
<td><i>word</i></td>
<td><i>word</i></td>
</tr>
<tr>
<td>List</td>
<td><ul><li>word</li><li>word</li></ul></td>
<td><ul><li>word</li><li>word</li></ul></td>
</tr>
<tr>
<td>Title</td>
<td><h3 (or 1, 2, 4)>word</h3></td>
<td><h3>word</h3></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>