HTMLRedactor.com is an online HTML editor, supporting Zen Coding.
The interface consists of two sections, left and right. The HTML code is entered in the left section and is displayed immediately in the preview area on the right. HTMLRedactor is suitable for quick creation of HTML code that you can copy and paste to other projects.
The Zen Coding option allows rapid generating of HTML code from simple text snippets. After you enter the particular snippet and clicking “Tab”, the code gets expanded automatically.
For example:
table>tr*2>td*2
turns into:
<table>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
The skeleton of an HTML document can be generated with a single line of code:
html:4t
The result is:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Document</title>
</head>
<body>
</body>
</html>