Fully Loaded Form
<form id="form_id" name="form_name" action="<<**SelectionInsertionPlaceholder**>>" method="post">
<p><label for="first">Text: </label><input type="text" name="first" id="first" /></p>
<p><label for="radio">Radio: </label><input type="radio" name="radio" id="radio_one" value="one">One <input type="radio" name="radio" id="radio_two" value="two">Two</p>
<p><label for="checkbox">Checkbox: </label><input type="checkbox" name="checkbox" id="checkbox" value="checked">Check</p>
<p><label for="select">Select: </label>
<select name="select" id="select">
<option value="alpha">Alpha</option>
<option value="beta" selected>Beta</option>
</select>
</p>
<p><label for="multiselect">MultiSelect: </label>
<select name="multiselect" id="multiselect" multiple="multiple" size="2">
<option value="gamma">Gamma</option>
<option value="delta">Delta</option>
<option value="epsilon">Epsilon</option>
<option value="zeta">Zeta</option>
</select>
<p><label for="textarea">Textarea: </label><textarea name="textarea" id="textarea" rows="5" cols="30">Text</textarea></p>
<p><input type="submit" name="submit" value="submit" /></p>
</form>
Added to HTML by Jeremy Reid
HTML Form With Legend
<form action="<<**SelectionInsertionPlaceholder**>>" method="get">
<fieldset>
<legend>Form Name</legend>
<p><label for="first">First Input: </label><input type="text" name="first" id="first" /></p>
</fieldset>
<p><input type="submit" /></p>
</form>
Added to HTML by Stuart Sharpe
SwfObject HTML
<script type="text/javascript">
swfobject.registerObject("flash-ID", "9.0.0");
</script>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="590" height="370" id="flash-ID">
<param name="movie" value="INSERT YOU FLASH HERE 1" />
<param name="play" value="true" />
<param name="menu" value="false" />
<param name="swliveconnect" value="true" />
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="INSERT YOU FLASH HERE 2" width="590" height="370">
<param name="play" value="true" />
<param name="menu" value="false" />
<param name="swliveconnect" value="true" />
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<!--<![endif]-->
<a href="http://www.adobe.com/go/getflashplayer">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
</a>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
Meta description and keyword tag
<meta name="description" content="" />
<meta name="keywords" content="" />
Added to HTML by Axel Metayer
Basic Page Structure HTML 5
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title></title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="robots" content="" />
</head>
<body>
</body>
</html>
Added to HTML by Sven Hofmann
Basic Page Structure XHTML 1.1 Valid
<!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="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><<**SelectionInsertionPlaceholder**>></title>
</head>
<body>
</body>
</html>
Instant Refresh (with selection placeholder)
<meta http-equiv="refresh" content="0;url=<<**SelectionInsertionPlaceholder**>>" />