CLASS X Comment Tag
1. Comment <!-…- -> Tag
This tag is used to insert comments in the source code of the Web page. Comments are not displayed in the browser’s window.All the text inserted inside this tag (<! — … — >) will be ignored by the browser that made invisible for the user. You can use comment to explain your code, it can help you, when you edit the source code later. This is especially useful, when you have a lot of codes.
Syntax
<! - -.... - ->
EXAMPLE-
<HTML> <HEAD> <TITLE> Comment </TITLE> </HEAD> <B0DY> <!- - This is a comment. - - > This is body. </BODY> </HTML>
2 What for is Mailto function -
The "mailto" function is used to create email links on webpages,
allowing users to click on the link and open their default
email client with a new message addressed to the specified email address.
Comments
Post a Comment