Posted: December 13th, 2009 | Author: jriggs | Filed under: web, wordpress | Tags: blank, dtd, html, html template, template, transitional | 1 Comment »
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>HTML Template</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--link type="text/css" rel="stylesheet" href="style.css"-->
</head>
<body>
</body>
</html>
Download zipped html file
Posted: December 2nd, 2009 | Author: jriggs | Filed under: firefox | Tags: bookmark, firefox, html, validate, w3c | No Comments »
An important part of writing html is making sure that what you’ve written is valid code. W3C provides an excellent resource for validating. I will show you how to utilize this service to validate any page directly from a Firefox bookmark.
First, click on the ‘Bookmarks’ menu, and then right-click on ‘New Bookmark…’

validate bookmark
Add text for the name that will be easy for you to remember. In the location text box paste the following javascript snippet:
javascript:void
(document.location='http://validator.w3.org/check?uri='+document.location+';verbose=1;ss=1')
Click the ‘Add’ button and test it out!