html¶
html:xml¶
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru"></html>
html:4t¶
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="ru">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
</head>
<body>
</body>
</html>
html:4s¶
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="ru">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
</head>
<body>
</body>
</html>
html:xt¶
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
</head>
<body>
</body>
</html>
html:xs¶
<!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" xml:lang="ru">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
</head>
<body>
</body>
</html>
html:xxs¶
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
</head>
<body>
</body>
</html>
html:5¶
<!DOCTYPE HTML>
<html lang="ru-RU">
<head>
<title></title>
<meta charset="UTF-8">
</head>
<body>
</body>
</html>
Document Metadata¶
head¶
title¶
base¶
link¶
link:css¶
<link rel="stylesheet" type="text/css" href="style.css" media="all">
link:print¶
<link rel="stylesheet" type="text/css" href="print.css" media="print">
link:favicon¶
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
link:touch¶
<link rel="apple-touch-icon" href="favicon.png">
link:rss¶
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml">
link:atom¶
<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml">
meta¶
meta:utf¶
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
meta:win¶
<meta http-equiv="Content-Type" content="text/html;charset=Win-1251">
meta:compat¶
<meta http-equiv="X-UA-Compatible" content="IE=7">
style¶
<style type="text/css"></style>
Scripting¶
script¶
<script type="text/javascript"></script>
script:src¶
<script type="text/javascript" src=""></script>
noscript¶
Sections¶
body¶
section, sect¶
nav¶
article, art¶
aside¶
h1¶
h2¶
h3¶
h4¶
h5¶
h6¶
hgroup, hgr¶
header, hdr¶
footer, ftr¶
address, adr¶
div¶
Grouping Content¶
p¶
hr¶
br¶
pre¶
dialog, dlg¶
blockquote, bq¶
<blockquote></blockquote>
ol¶
ol+¶
ul¶
ul+¶
li¶
dl¶
dl+¶
<dl>
<dt></dt>
<dd></dd>
</dl>
dt¶
dd¶
Text-level Semantics¶
a¶
a:link¶
a:mail¶
q¶
cite¶
em¶
strong, str¶
small¶
mark¶
dfn¶
abbr¶
acronym, acr¶
<acronym title=""></acronym>
time¶
progress, prog¶
meter¶
code¶
var¶
samp¶
kbd¶
sub¶
sup¶
span¶
i¶
b¶
bdo¶
bdo:r¶
bdo:l¶
ruby¶
rt¶
rp¶
Edits¶
ins¶
del¶
Embedded Content¶
figure, fig¶
img¶
iframe, ifr¶
<iframe src="" frameborder="0"></iframe>
embed, emb¶
object, obj¶
<object data="" type=""></object>
param¶
video¶
audio¶
source, src¶
canvas¶
map¶
map+¶
<map name="">
<area shape="" coords="" href="" alt="">
</map>
area¶
<area shape="" coords="" href="" alt="">
area:d¶
<area shape="default" href="" alt="">
area:c¶
<area shape="circle" coords="" href="" alt="">
area:r¶
<area shape="rect" coords="" href="" alt="">
area:p¶
<area shape="poly" coords="" href="" alt="">
Tabular Data¶
table¶
table+¶
<table>
<tr>
<td></td>
</tr>
</table>
caption, cap¶
colgroup, colg¶
colgroup+, colg+¶
<colgroup>
<col>
</colgroup>
col¶
tbody¶
thead¶
tfoot¶
tr¶
tr+¶
th¶
td¶
Forms¶
form¶
form:get¶
<form action="" method="get"></form>
form:post¶
<form action="" method="post"></form>
fieldset, fset¶
legend, leg¶
label¶
input¶
input:hidden, input:h¶
<input type="hidden" value="">
input:text, input:t¶
<input type="text" value="" id="">
input:search¶
<input type="search" value="" id="">
input:email¶
<input type="email" value="" id="">
input:url¶
<input type="url" value="" id="">
input:password, input:p¶
<input type="password" value="" id="">
input:datetime¶
<input type="datetime" value="" id="">
input:datetime-local¶
<input type="datetime-local" value="" id="">
input:date¶
<input type="date" value="" id="">
input:month¶
<input type="month" value="" id="">
input:week¶
<input type="week" value="" id="">
input:time¶
<input type="time" value="" id="">
input:number¶
<input type="number" value="" id="">
input:range¶
<input type="range" value="" id="">
input:color¶
<input type="color" value="" id="">
input:checkbox, input:c¶
<input type="checkbox" id="">
input:radio, input:r¶
<input type="radio" id="">
input:file, input:f¶
<input type="file" id="">
input:submit, input:s¶
<input type="submit" value="">
input:image, input:i¶
<input type="image" src="" alt="">
input:reset¶
<input type="reset" value="">
input:button, input:b¶
<input type="button" value="">
button, btn¶
select¶
select+¶
<select id="">
<option value=""></option>
</select>
optgroup, optg¶
optgroup+, optg+¶
<optgroup>
<option></option>
</optgroup>
option, opt¶
Interactive Elements¶
datagrid, datag¶
datalist, datal¶
textarea, tarea¶
<textarea id="" cols="30" rows="10"></textarea>
keygen, kg¶
output, out¶
details, det¶
command, cmd¶
bb¶
menu¶
menu:context, menu:c¶
<menu type="context"></menu>
menu:toolbar, menu:t¶
<menu type="toolbar"></menu>
Conditional Comments¶
cc:ie¶
cc:noie¶
<!--[if !IE]><!--><!--<![endif]-->