Note the keywords "HTTP-EQUIV", "Name" and "Content" are case-insensitive. Their values are also case-insensitive.
Example Describe meta
data within an HTML document:

Tag Name Example(s)

Author
<META NAME="AUTHOR" CONTENT="Tex Texin">

Content-Language
<META HTTP-EQUIV="CONTENT-LANGUAGE"
CONTENT="en-US,fr">

CONTENT-TYPE
<META HTTP-EQUIV="CONTENT-TYPE"
CONTENT="text/html; charset=UTF-8">

Keywords
<meta name="keywords" content="HTML,CSS,XML,JavaScript" />

DESCRIPTION
<meta name="description" content="Free Web tutorials" />

Refresh
<META HTTP-EQUIV="REFRESH"
CONTENT="5;URL=newPage.html">

Transition effects for web pages
These transitions can be used while entering or exiting a page by employing different values for http-equiv attribute in the tag.
<meta http-equiv="Page-Enter"

content="RevealTrans(Duration=2.0,
Transition=2)" />
<meta http-equiv="Page-Exit"
content="RevealTrans(Duration=3.0,
Transition=12)" />

The META tags have to be placed inside the HTML head. Duration determines the number of seconds for the transition effect and Transition supplies the type. Note: The value of Transition is a number (refer table above). Page-Enter and Page-Exit specify loading and unloading of the page.

There are at present 23 type of transitions as listed in the table below.
<!--[if gte mso 9]> Normal 0 false false false EN-US X-NONE KHM MicrosoftInternetExplorer4

1. Box in

2. Box out

3. Circle in

4. Circle out

5. Wipe up

6. Wipe down

7. Wipe right

8. Wipe left

9. Vertical blinds

10. Horizontal blinds

11. Checkerboard across

12. Checkerboard down

13. Random dissolve

14. Split vertical in

15. Split vertical out

16. Split horizontal in

17. Split horizontal out

18. Strips left down

19. Strips left up

20. Strips right down

21. Strips right up

22. Random bars horizontal

23. Random bars vertical

24. Random


 
Top