Next I like to change
''<html xmlns="http://www.w3.org/1999/xhtml" id="sixapart-standard">''\\
to ''<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">''\\
because I code/understand only English.\\

Now for the [[http://www.yaml.de/|YAML]] bit..\\
I still use YAML 3.3.1 because I have not really figured out how YAML 4 works and [[http://builder.yaml.de/|YAML Builder]] is still using version 3. //PS YAML builder allows you to customise a skeleton web page layout.//\\
Using YAML Builder I get some layout CSS and a barebones index.html page. The ''<head>'' and ''<body>'' code come from this index.html file.\\
Insert ''<meta http-equiv="Content-type" content="text/html; charset=utf-8" />'' after the ''<head>'' tag\\
Insert ''<link rel="EditURI" type="application/rsd+xml" title="RSD" href="<$mt:Link template="rsd"$>" />'' as found in the default web template.\\
Change ''<title>Your Page Title</title>'' to ''<title><$mt:BlogName encode_html="1"$></title>''\\
After ''<!-- add your meta tags here -->'' add your meta tags like
<code>
 <META NAME="Description" CONTENT="A description for this website">
 <META NAME="Keywords" CONTENT="keywords,KEYWORDS,keywords">
 <META NAME="Author" CONTENT="Name of this sites owner">
 <META NAME="Identifier-url" CONTENT="<$mt:WebsiteURL$>">
 <META NAME="Revisit-after" CONTENT="1 days">
 <META NAME="Language" CONTENT="en">
 <META NAME="Robots" CONTENT="all">
</code>
modify as needed..\\

Insert ''<$mt:Include module="HTML Head"$>'' after this as in the MT default.\\