Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Is a http-equiv META Tag/Element
What Is a http-equiv META Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags
✍: 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:
2007-05-12, 5172👍, 0💬
Popular Posts:
Can one execute dynamic SQL from Forms? Yes, use the FORMS_DDL built-in or call the DBMS_SQL databas...
WHat will be the result of the following code? #define TRUE 0 // some code while (TRUE) { // some co...
How do you override a defined macro? You can use the #undef preprocessor directive to undefine (over...
How To Select All Columns of All Rows from a Table? - MySQL FAQs - SQL SELECT Query Statements with ...
How To Write a Minimum Atom 1.0 Feed File? - RSS FAQs - Atom Feed Introduction and File Generation I...