Forum Moderators: open
Does ommiting the charset=iso-8859-1 matter for websites in Spanish or can the language tag be added to the original tag: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1; language=ES">?
These questions are naturally posted under the assumption that SEO is vital.
Can anyone help please?
The best way is to define the document language on the
html element rather than with a meta tag: <html lang="es"> And to leave the content-type meta tag as before:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> You should always ensure you define both the content language and the content-type (charset) on all pages.