script:src
<script src=""></script>
meta:compat
<meta http-equiv="X-UA-Compatible" content="IE=7">
meta:vp
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
style
<style></style>
link
<link rel="stylesheet" href="">
link:css
<link rel="stylesheet" href="style.css">
link:print
<link rel="stylesheet" href="print.css" media="print">
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">
What is ATOM? (Hint - its not the text editor)
a
<a href=""></a>
a:link
<a href="http://"></a>
a:mail
<a href="mailto:"></a>
img
<img src="" alt="">
form:get
<form action="" method="get"></form>
form:post
<form action="" method="post"></form>
input
<input type="text">
Input Hidden
input:hidden
<input type="hidden" name="">
btn
<button></button>
btn:s
<button type="submit"></button>
table+
<table>
<tr>
<td></td>
</tr>
</table>
tr+
<tr>
<td></td>
</tr>
select+
<select name="" id="">
<option value=""></option>
</select>