<?xml version="1.0" encoding="UTF-8"?>
<!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">
	<head>
		<title>Example WIF</title>
	</head>
	<body>
		<h1>Heading h1</h1>
		<h2>Heading h2</h2>
		<h3>Heading h3</h3>
		<h4>Heading h4</h4>
		<h5>Heading h5</h5>
		<h6>Heading h6</h6>

		<h2>Inline elements</h2>
		<p>
			text, 
			<em>italic</em>
			, 
			<strong>bold</strong>
			, 
			<em>
				<strong>bold and italic</strong>
			</em>
			, 
			<code>tt</code>
		</p>
		<h2>Lists</h2>
		<h3>Unordered list</h3>
		<ul>
			<li>A
				<ul>
					<li>A.1</li>
					<li>A.2</li>
				</ul>
			</li>
			<li>B</li>
			<li>C</li>
		</ul>

		<h3>Ordered list</h3>
		<ol>
			<li>A</li>
			<li>B</li>
			<li>C</li>
		</ol>

		<h3>Definition list</h3>
		<dl>
			<dt>A</dt>
			<dd>65</dd>
			<dt>a</dt>
			<dd>97</dd>
			<dt>1</dt>
			<dd>49</dd>
		</dl>

		<h2>Links</h2>
		<p>
			internal link:
			<a class="wif-internal" href="Sandbox">Sandbox</a>
			internal link:
			<a class="wif-internal" href="Sandbox">
				Go and read the sandbox
			</a>
			external link:
			<a class="wif-external" href="http://www.wikipedia.com">
				http://www.wikipedia.com
			</a>
			external link:
			<a class="wif-external" href="http://www.wikipedia.com">
				Wikipedia
			</a>
		</p>
		<h2>Hr, p and pre</h2>
		<hr />
		<p>text</p>
		<pre>pre element</pre>

		<h2>Table</h2>
		<table>
			<caption>The table's caption</caption>
			<tr>
				<th>Column heading 1</th>
				<th>Column heading 2</th>
				<th>Column heading 3</th>
			</tr>
			<tr>
				<th>Row heading 1</th>
				<td>Cell 2</td>
				<td>Cell 3</td>
			</tr>
			<tr>
				<th>Row heading A</th>
				<td>Cell B</td>
				<td>Cell C</td>
			</tr>
		</table>

		<h2>Image</h2>
		<p>
			<a class="wif-pic" href="Uka.png">
			<img src="/images/b/b6/Uka.png" alt="logo" />
			for more see wikipedia
			</a>
		</p>
	</body>
</html>
