December 4, 2020

Some rules of defining HTML tags

rules of defining HTML

 


- In HTML you can define element of start tag, write content, and end tag


- Rule of HTML element is define everything between start tag and the end tag

<h1>Give Heading</h1>

<p>Write Paragraph</p>


The <html> element is the root element and it defines the whole HTML document.

It has a start tag <html> and an end tag </html>.

Then, inside the <html> element there is a <body> element:


<html>

<body>

<h1>Write Heading</h1>

<p>Write paragraph.</p>

</body>

</html>


* For more information and learn click here

2 comments:


  1. I need to thank you for this very good read and I have bookmarked to check out new things
    from your post. Thank you very much for sharing such a useful article and Will definitely save and revisit your site
    Web Design and Development

    ReplyDelete
  2. Thanks for sharing the post. if you want to design your own website at reasonable price visit on weblinkindia, best web designing company in india

    ReplyDelete

Integrating Google reCAPTCHA v3 in HTML Form with PHP

  What is Google reCAPTCHA v3? Google reCAPTCHA is a free service that helps protect websites from spam and abuse. reCAPTCHA v3 is the lates...