Html-tutorial
Html How to use nowrap
NOWRAP indicates that text should not wrap in the cell. NOWRAP serves much the same purpose as the tag.
For example:
A layout using tables, which listed items and then depending on which item it was, had a small icon on the end of it. In some browsers, it will wrap ..
Mailto html anchor field
Most of you are aware of the MAILTO tag in HTML, which allows you to send mail to a particular address by clicking on a link.
What many people do not realize is that by adding a subject to it, you can have the mail automatically come up with the default ..
Target attribute in html
One of the "new" features in HTML 3.0 is the ability to utilize frames. Frame have many useful functions. One way to better control which frame a link is opened in, is the use of the TARGET command. For example, to open a document named index.html in a frame named ..
Comments tag
HTML Comment Tag:
The HTML 'comments' tag is used for creating comments within your HTML code. Comments will not be displayed on the browser. The comments tag is for the programmers benefit. The programmers use this comment tag to explain the code what they does, so that the code can be ..
What is html tag
HTML tag is that which is used in all the web pages. It is the first tag which is added in your file html file.
This <html> tag will define document is html.
Most of the html tags will start with <..> and end as </..>
If you have an open or start ..
How to create a webpage
Most of the simple webpages are created or designed by using HTML coding. HTML is not a coding language, It is a markup language.
How to create a HTML file in Windows machine:
a) Open notepad or wordpad
b) Save the file as test.html
c) When ever we want to edit the file, go ..
What is HTML
The Hyper Text Markup Language (HTML) is a markup language used to
create hypertext documents that are platform independent. So most of what we see in the Internet web pages are made of html document.
HTML Code was originally developed by Tim Berners-Lee while at CERN, and popularized by the Mosaic browser ..
Used meta tags
<meta name="resource-type" content="document">
<meta http-equiv="pragma" content="no-cache">
<meta name="revisit-after" content="5 days">
<meta name="classification" content="Family Services">
<meta name="description" content="Little discription">
<meta name="MSSmartTagsPreventParsing" content="TRUE">
<meta name="keywords" content="Keywords">
<meta name="robots" content="ALL">
<meta name="distribution" content="Global">
<meta name="rating" content="Safe For Kids">
<meta name="copyright" content="Name">
<meta name="author" content="Name">
<meta http-equiv="reply-to" content="mailid@domain.com">
<meta name="language" content="English">
<meta name="doc-type" content="Web Page">
<meta name="doc-class" content="Completed">
<meta name="doc-rights" content="Copyrighted Work">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
..
Escape characters
URL Encoded Characters
When encoding a URL, a character may not be available on the keyboard. Other times, the character of a URL might not be usable in contexts where it may conflict with a reserved character. In either case, the character can be encoded with a % followed by its ..