Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly.
XML error message: The element type "font" must be terminated by the matching end-tag "".
How to troubleshoot problem above is easy. The solutions, you must putting end-tag in your code.
Example, you insert meta tag like this.
<meta content="Trick, Tips, And Tutorial Blogger" name="title">
You must insert end-tag of this code like this.
<meta content="Trick, Tips, And Tutorial Blogger" name="title"></meta>
Or like this.
<meta content="Trick, Tips, And Tutorial Blogger" name="title"/>
Don’t forget to insert end-tag every you edit your template.
No comments:
Post a Comment