Basic structure of the HTML
***Example of basic structure of html***
* <DOCTYPE html>
* <html>
* <head>
* <title>ABCD</title>
* </head>
* <body>
* <h1>This is a heading</h1>
* <p> This is a paragraph</p>
* </body>
* </html>
**Example Explained**
The <!DOCTYPE html> affirmation characterizes that this file is a HTML5 file.
The <html> tag is the root tag of a HTML page.
The <head> tag contains meta data about the HTML page.
The <title> tag indicates a title for the HTML page (which is displayed in the program’s title bar or the page’s tab).
The <body> tag characterizes the document’s body, and is a container for every one of the noticeable substance, like headings, passages, pictures, hyperlinks, tables, records, and so forth.
The <h1> tag characterizes a huge heading.
The <p> tag characterizes a section.
https://ahrafcode.com/html-introduction/ (https://ahrafcode.com/html-introduction/)