Monday, December 08, 2008

Baltimore Ravens Defense Damage Opponent (s)

If you are a raven fan or football guru then you already know what
the defense of the Ravens can do to the team lined up on the other side of the neutral zone.
Actually that is what prompted this blog post.
Ironic, definitely NOT, take a look at what happened to the Steelers RB Rashard Mendenhall when he sent a text messgae</a> to RB Ray Rice of the ravens boosting he was going to break the ravens cycle of not allowing a 100 yard rusher in over 25 games. Mendenhall viciously hammered by Ray Lewis- like a nail going into a coffin!

This weeks game The defense does the damage once again. Not 1 player, Not 2 redskin players but 3 of the deadskin offensive line are injured.
Skins LT Chris Samuels left with a triceps injury, and RT Jon Jansen has a sprained ligament in his knee. 3rd string back-up OT who T.Suggs embarrassed, pushing through his flimsy self to get 2 hands on QB J.Cambel .

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>