Comments A sentence which describe your code identity or comments can be used for different purpose also such as documentation purpose or remainder purpose also. Types of Comments: 1. Single line comment 2. Multi line Comment 3. Conditional Comment Syntax: <!—HTML Comment Syntax-- > Example of Single Line Comment: <!—Heading of the website -- > <H1> www.htmlrun.com </H1> <!—Start body contain-- > <p> this is your body </p> <!—End of Code -- > Example of Multi line Comments: <!—Heading for website With the tagline -- > <H1> www.htmlrun.com </H1> Example of Conditional Comments: <!--[if IE 6]> Comment for IE 6 <![endif]-->
1. Google Tez Google changed the name of Tez , now it become Google Pay. 2. Apple Launch Event On September 12 (10:30 PM) Apple will be launching the new iPhone devices. 3. Autorickshaw with QR code Now Autorickshaw will get a Unique Identification Number and QR code to identity the autorickshaw 4. India Post Payments Bank PM launches India Post Payments Bank. India Post has the largest network in India, now it is converted to Payment Bank. It Offers a doorstep banking. 5. Twitter Now in Twitter user will able to see the followers who are online.
Conteneditable is an attribute of HTML element to edit the content, you can easily edit the content. Example: HTML: <!DOCTYPE HTML> <html> <head> <title></title> </head> <body> <table border="1"> <tr> <td contenteditable='true'>HTML</td> <td>RUN</td> </tr> </table> </body> </html> OUTPUT
Comments
Post a Comment