Advanced Java and Web Technologies for JNTUK
Blog providing beginner tutorials on different web technologies like HTML, CSS, Javascript, PHP, MYSQL, XML, Java Beans, Servlets, JSP and AJAX
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
AJWT » HTML » Text and Comments
Suryateja Pericherla Categories: HTML. No Comments on Text and Comments
0
(0)

Text that isn’t processed by the user agent (browser) can be beneficial for a couple of reasons. The first reason is simple documentation, that is, to make your documents more legible and easy to follow should you need to edit them later. The second is to include more information within the document for later access or inclusion by features supported in upcoming browsers.

 

Comments

 

HTML comments can be used by the developer of the web pages to document certain sections in the web page. A comment in HTML should be written as follows:

 

<!–  Your comment here.  –>

 

Comments are generally used for short text, not for commenting out large sections of HTML code. The text included in the comments is not visible to the user.

 


Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests.


CDATA Sections

 

For larger comment sections, CDATA (character data) sections can be used. CDATA structures are also useful in XML and XHTML. The format for the CDATA tag is as follows:

 

<![CDATA[   Commented text goes here.  ]]>

 

Both comments and CDATA tags cannot be nested.

 

The term CDATA is used about text data that should not be parsed by the XML parser. Characters like “<” and “&” are illegal in XML elements. “<” will generate an error because the parser interprets it as the start of a new element. “&” will generate an error because the parser interprets it as the start of a character entity.

 

Some text, like JavaScript code, contains a lot of “<” or “&” characters. To avoid errors, script code can be defined as CDATA. Everything inside a CDATA section is ignored by the parser. A CDATA section starts with “<![CDATA[” and ends with “]]>“.

How useful was this post?

Click on a star to rate it!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Note: Do you have a question on this article or have a suggestion to make this article better? You can ask or suggest us by filling in the below form. After commenting, your comment will be held for moderation and will be published in 24-48 hrs.

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram