1 # Some useful Unicode entities
51 snippet doctype HTML 4.01 Strict
52 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
53 "http://www.w3.org/TR/html4/strict.dtd">
54 snippet doctype HTML 4.01 Transitional
55 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
56 "http://www.w3.org/TR/html4/loose.dtd">
57 snippet doctype HTML 5
59 snippet doctype XHTML 1.0 Frameset
60 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
61 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
62 snippet doctype XHTML 1.0 Strict
63 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
64 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
65 snippet doctype XHTML 1.0 Transitional
66 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
67 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
68 snippet doctype XHTML 1.1
69 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
70 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
71 # HTML Doctype 4.01 Strict
73 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
74 "http://www.w3.org/TR/html4/strict.dtd">
75 # HTML Doctype 4.01 Transitional
77 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
78 "http://www.w3.org/TR/html4/loose.dtd">
82 # XHTML Doctype 1.0 Frameset
84 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
85 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
86 # XHTML Doctype 1.0 Strict
88 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
89 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
90 # XHTML Doctype 1.0 Transitional
92 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
93 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
96 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
97 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
103 <html xmlns="http://www.w3.org/1999/xhtml">
112 <meta http-equiv="content-type" content="text/html; charset=utf-8"`Close()`>
114 <title>${1:`substitute(Filename('', 'Page Title'), '^.', '\u&', '')`}</title>
118 <title>${1:`substitute(Filename('', 'Page Title'), '^.', '\u&', '')`}</title>${2}
120 <script type="text/javascript" charset="utf-8">
124 <script src="${1}.js" type="text/javascript" charset="utf-8"></script>${2}
126 <style type="text/css" media="${1:screen}">
130 <base href="${1}" target="${2}"`Close()`>
139 <object width="$2" height="$3" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
140 codebase="http://www.apple.com/qtactivex/qtplugin.cab">
141 <param name="src" value="$1"`Close()`>
142 <param name="controller" value="$4"`Close()`>
143 <param name="autoplay" value="$5"`Close()`>
144 <embed src="${1:movie.mov}"
145 width="${2:320}" height="${3:240}"
146 controller="${4:true}" autoplay="${5:true}"
147 scale="tofit" cache="true"
148 pluginspage="http://www.apple.com/quicktime/download/"
153 <legend>${1:name}</legend>
158 <form action="${1:`Filename('$1_submit')`}" method="${2:get}" accept-charset="utf-8">
162 <p><input type="submit" value="Continue →"`Close()`></p>
165 <h1 id="${1:heading}">${2:$1}</h1>
167 <input type="${1:text/submit/hidden/button}" name="${2:some_name}" value="${3}"`Close()`>${4}
169 <label for="${2:$1}">${1:name}</label><input type="${3:text/submit/hidden/button}" name="${4:$2}" value="${5}" id="${6:$2}"`Close()`>${7}
171 <link rel="${1:stylesheet}" href="${2:/css/master.css}" type="text/css" media="${3:screen}" charset="utf-8"`Close()`>${4}
173 <a href="mailto:${1:joe@example.com}?subject=${2:feedback}">${3:email me}</a>
175 <meta name="${1:name}" content="${2:content}"`Close()`>${3}
177 <option value="${1:option}">${2:$1}</option>${3}
179 <option>${1:option}</option>${2}
181 <select name="${1:some_name}" id="${2:$1}">
182 <option value="${3:option}">${4:$3}</option>
185 <table border="${1:0}">
186 <tr><th>${2:Header}</th></tr>
187 <tr><th>${3:Data}</th></tr>
190 <textarea name="${1:Name}" rows="${2:8}" cols="${3:40}">${4}</textarea>${5}