Being found

Search engine optimization

How to be found on the internet - HTML Structure

To present your information on the internet, there are several languages and structures to choose from. We decided HTML was the best to code and maintain our websites, and those we build for our customers. To understand how a basic HTML document is structured we have placed an example of the source of such a document below. The document, as you can see, has a simple structure and the information is placed in it following the standards. Headers <H1> t/m <H3> and paragraphs <P>.....</P> are properly placed.

<!DOCTYPE HTML>

<HTML lang="en">

<HEAD>

<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">

<META NAME="description" LANG="en" CONTENT="A short description of your site and its content. What is your site about? This one is about the structure of an HTML document.">

<META NAME="keywords" LANG="en" CONTENT="webdesign, websitedesign, design, website, optimization, SEO, searchengines, being found, to be found, SE tips, vision2form">

<META NAME="robots" CONTENT="index, follow">

<TITLE>The title of the page</TITLE>

</HEAD>

<BODY>

<H1>The chapter title.</H1>

<H2>A subtitle.</H2>

<P>A paragraph. A short introduction ............ On the internet, and then especially when the subject of discussion is websitedesign, there seem to be no other concern then "how to be found by and with the searchengines". The most important factor; the visitor, "you" has been forgoten or worse, simply ignored.</P>

<H2>A subtitle</H2>

<P>A paragraph. A short guide on how to be found on the internet is not complete if we would forget to mention the textual structure. The way information is presented is essential to help your visitor finding what he is looking for and deciding if it is relevant. </P>

<H2>A subtitle</H2>

<H3>Short paragraph header.</H3>

<P>A paragraph. A short text .... .... .... .... .... .... .... .... .... .... .... .... .... .... .... .... </P>

<H3>Short paragraph header.</H3>

<P>A paragraph. A short text .... .... .... .... .... .... .... .... .... .... .... .... .... .... .... .... </P>

</BODY>

</HTML>