Friday, December 05, 2008

Quick HTML lesson!

You have your Template that you want to save as just that, template.html.

<html>
<head>
<title>Frank Whites html template</title>
</head>
<body>
Place content here.

</body>
</html>
-----------------------
A few Block tags

<html>
<head>
<title>Frank Whites html template</title>
</head>
<body>
<h1> heading 1</h1>
<h2> heading 2</h2>
<h3> heading 3</h3>
<h4> heading 4</h4>
<h5> heading 5</h5>
<h6> heading 6</h6>
<p>This P tag here is called a Paragraph tag.</p>

<blockquote> "This is block quote tag" This is Text after quotation!</blockquote>

Organized and UnOrganized lists.

<ol>
<li> learn copy</li>
<li>learn code</li>
<li>learn design</li>
<li>learn html</li>
</ol>

<ul>
<li>learn copy</li>
<li>learn code</li>
<li>learn design</li>
<li>learn html</li>
</ul>
</body>
</html>

No comments: