DEV Community

Madhan Raj
Madhan Raj

Posted on

HTML for Beginners

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>
Enter fullscreen mode Exit fullscreen mode

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.
Enter fullscreen mode Exit fullscreen mode

Reference:https://www.w3schools.com/html/html_headings.asp

Top comments (0)