Tools, FAQ, Tutorials:
HTML http-equiv 'meta' Tag/Element
What Is an HTML http-equiv "meta" Tag/Element?
✍: FYIcenter.com
a http-equiv "meta" element is a special "meta" element that provides
information equivalent to HTTP headers. A http-equiv "meta" element must
include the "http-equiv" attribute as, http-equiv="Content-Type".
Here is some good examples:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Refresh" content="3; URL=http://dev.fyicenter.com/" /> <meta http-equiv="Expires" content="Sun, 22 Mar 1998 16:18:35 GMT" />
XHTML browsers and search engines are all respecting http-equiv meta elements. So it is important to code the keywords meta element properly in your XHTML documents following rules below:
⇒ HTML Author 'meta' Tag/Element
⇐ HTML Robots 'meta' Tag/Element
2017-06-23, ∼2865🔥, 0💬
Popular Posts:
How To Copy Array Values to a List of Variables in PHP? If you want copy all values of an array to a...
How to create a "Sign-up or Sign-in" user flow policy in my Azure AD B2C directory? If you want to b...
How to run CMD Commands in Dockerfile to change Windows Docker images? When building a new Windows i...
Can You Add Values to an Array without Keys in PHP? Can You Add Values to an Array with a Key? The a...
How To Convert a Character to an ASCII Value? If you want to convert characters to ASCII values, you...