The basic understandig of Html Document.
All HTML documents must start with a document type declaration: <!DOCTYPE html>.
The HTML document itself begins with and ends with .
The visible part of the HTML document is between
and .The essential tags used in Html are in the below
Structural Tags
<!DOCTYPE html>
<html>
<head>
<title>
<body>
Text Tags
<h1> to <h6> :This tag used for the headings which is starts for H1 to h6
<p>: Defines a paragraph.
<br>: Inserts a single line break.
<hr>: It Creates a horizontal line to separate sections.
<img>: Embeds images.
<ul>: Starts an unordered with bulleted list.
<ol>: starts an ordered Numbers list.
Top comments (0)