Follow Me

Archive | Html RSS feed for this section

Html Meta Tags with example

21. May 2010

0 Comments

Meta Tags – Meta tags are information inserted into the “head” area of your web pages. Meta information basically deals with browser. Meta tags, for example, can tell a browser what “character set” to use like UTF-8 character encoding also for redirection purpose. For character encoding - <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> For current page refresh <meta http-equiv="refresh" content="500"> For [...]

Continue reading...

Basic HTML Structure

17. May 2010

0 Comments

Every html web page contains basic tags that are structured and having proper place in the page. Following are the HTML structure for any basic html page. <html> <head> <title>Website Title</title> </head> <body> content goes here... </body> </html> Browser displays web page through HTTP protocol. This protocol responsible for displaying high per text (simple text, images, flash and other scripting contents).

Continue reading...