Here is the general layout of an XHTML page, blank with only Doctype, Head, Title and Body tags – No Divs or formatting.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html > <head> <title>Page Title</title> <meta http-equiv="Content-type" content="text/html; charset=UTF-8" /> <meta name="keywords" content="keyword1, keyword2, keyword3" /> <meta name="description" content="This is my website description" /> <meta name="author" name="Company Name" /> <!--This tag is an auto forward to another html page <meta http-eqiv="Refresh" content="10; url = https://www.google.co.uk" /> --> </head> <body> </body> </html>