How do you Specify the Language in an XHTML
-
zendnwar
-
March 29, 2014
-
HTML
-
0 Comments
Define a primary language with the lang attribute, and then call out the secondary language(s) with lang attributes on elements in the document. Leave out the lang attribute and define it in the various divisions of the document. <div lang=”bn” xml:lang=”bn”> Bangla content </div>
Continue Reading
How to automatically forward a page in HTML
-
zendnwar
-
March 29, 2014
-
HTML
-
178 Comments
<html> <head> <title>How to automatically forward a page in HTML</title> <meta http-equiv=”refresh” content=”0; url=http://www.example.com”> </head> <body> <h1>How to automatically forward a page in HTML</h1> </body> </html>
Continue Reading
What is HTML?
-
zendnwar
-
July 16, 2012
-
HTML
-
0 Comments
HTML means Hypertext markup language. This is not a programming Language. It is only markup language.A markup language is a set of markup tags. The purpose of the tags is to describe page content. The definition of HTML is HyperText Markup Language. HyperText is the method by which you move around on the web — by clicking on special text …
Continue Reading