Category: HTML Coding

Adding Meta Tags, Stylesheets, and a Title

Posted by on Mar.24, 2010, under Basics, HTML Coding No Comments

<head>,<title>, <meta>

Very important SEO factors depend on these tags. More specifically, the title and meta tags. Some say they’re not that important, but it’s how you write them that determines how important it is for SEO. (continue reading…)


Continuing – Defining the Content Language

Posted by on Mar.23, 2010, under Basics, HTML Coding (1) Comment

<html xmlns=”http://www.w3.org/1999/xhtml” dir=”ltr” lang=”en-US”>

Yep, the next line in your web page should look similar to this one. This next piece of code is just as important as the first. (continue reading…)


Lets Get Started – DOCTYPE

Posted by on Mar.23, 2010, under Basics, HTML Coding No Comments

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>

Yeah, that big long piece of code that’s on the top of your page. What is it for? Glad you asked! We’ll cover that in this article. This piece of code is very important in your website. (continue reading…)