XHTML
Cliptext

Empty XHTML Document, Headings, Paragraph, Line Break, Unordered List, Ordered List, Image, Anchor, Table, Internal Style Block, Style Import, Style Link, Division, Span, Form, Input, Textarea, Select, Comment

Empty XHTML Document
<!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="en" lang="en">
<head>
<title></title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
</head>
<body>

</body>
</html>

Headings (three shown, six available)
<h1 class=""></h1>
<h2 class=""></h2>
<h3 class=""></h3>

^Top

Paragraph
<p class=""></p>

Line Break
<br />

Unordered List
<ul>
<li></li>
<li></li>
<li></li>
</ul>

Ordered List
<ol>
<li></li>
<li></li>
<li></li>
</ol>

Definition List
<dl>
<dt></dt>
<dd></dd>
</dl>

^Top

Image
<img src="" width="" height="" alt="" class="" />

Anchor
<a href=""></a>

Table
<table cellpadding="" cellspacing="" border="" class="">
<tr>
<td></td>
<td></td>
</tr>
</table>

Internal Style Block
<style type="text/css">

</style>

Style Import
@import url("");

^Top

Style Link
<link href="" type="text/css" rel="stylesheet" />

Division
<div class="">

</div>

Span
<span class=""></span>

Form
<form method="post" action="">

</form>

Input
<input type="" name="" />

^Top

Textarea
<textarea name="" rows="" cols=""></textarea>

Select
<select name="">
<option></option>
<option></option>
</select>

Comment
<!-- -->

HTML - Tools