Example Site Content & Layout


The illustrations on the "Mexican Restaurant", "Mexican Cuisine", "Location" and "Contact Us" pages that follow will help you to better understand how a site should be organized for the purpose of SEO.  Not only is the site friendly to the search engines by taking advantage of On-Page SEO techniques, but it is also organized in a way that makes it easy for site visitors to find the information they need. 

Sample HTML

This is just an example of what the coding on a site might resemble.  This is just an example -  sites can be made up of a combination of HTML, Java, CSS, etc. that would not match what is shown here.  This is just general information regarding how META tags and header tags should appear within the code for the purposes of Search Engine Optimization (SEO):

<html>
<head>
<title>
Your title goes here - no more than 80 characters</title>
<meta name="DESCRIPTION" content="Put a descriptive call to action sentence here (be sure to include primary keywords/keyword phrases) - no more than 200 characters">
<meta name="KEYWORDS" content="Individual keywords & keyword phrases only (do not repeat words); leave out stop words like (free, and, for, of, nude, etc.) - no more than 20 words total">
<META NAME="ROBOTS" CONTENT="INDEX,FOLLOW">

(Any scripting such as CSS info or Java, should appear below meta tags)

</head>
<body>

(General page content goes here - within body tags)

<h1>Text using primary keywords included in META title goes here</h1>  <--------- HEADER

<h2>Text using primary keywords goes here</h2>  <--------- HEADER

<h3>Text using primary keywords goes here</h3>  <--------- HEADER

<h4>Text using primary keywords goes here</h4>  <--------- HEADER

<h5>Text using secondary keywords goes here</h5>  <--------- SUBHEADER

<h6>Text using secondary keywords goes here</h6>  <--------- SUBHEADER

</body>
</html>