Menu

Post image 1
Post image 2
1 / 2
0

HTML for Beginners

DEV Community·Madhan Raj·18 days ago
#TkzhQWfD
#html#resume#java#ai#document#fullscreen
Reading 0:00
15s threshold

Madhan Raj

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

Read More