Hi
Will this affect actinic at all if i swap the following around?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>
<actinic:variable name="PageTitle" />
</title>
to
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>
<actinic:variable name="PageTitle" />
</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
For SEO purposes I want the title tag as the very first thing in the code after the <head>
Also, just before the innercontent variable can I add a line of text for SEO purposes?
Will this affect actinic at all if i swap the following around?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>
<actinic:variable name="PageTitle" />
</title>
to
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>
<actinic:variable name="PageTitle" />
</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
For SEO purposes I want the title tag as the very first thing in the code after the <head>
Also, just before the innercontent variable can I add a line of text for SEO purposes?
Comment