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

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...