HTML CSS JS Audio Video

HTML

Hypertext Markup Language (HTML) is a standard markup language for documents designed to be displayed in internet browsers. This can be helped by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript and VBScript.
What about this tag <!-- This is comments on html -->.
Below is an example code of html :

<!DOCTYPE html>
<html>
    <head>
        <!-- Your title web -->
        <title>Guide HTML | CusMeDroid<title>
    </head>
    <body>
        <!-- Your code -->
    </body>
</html>
                

On body you can add tag of html.

Example :

Heading 1 / h1

Heading 2 / h2

Heading 3 / h3

Heading 4 / h4

Heading 5 / h5

h1 is the title or subtitle, in html looks like this.

<!DOCTYPE html>
<html>
    <head>
        <!-- Your title web -->
        <title>Guide HTML | CusMeDroid<title>
    </head>
    <body>
        <h1>Heading 1 / h1</h1>
        <h2>Heading 2 / h2</h2>
        <h3>Heading 3 / h3</h3>
        <h4>Heading 4 / h4</h4>
        <h5>Heading 5 / h5</h5>
    </body>
</html>
                

To create a paragraph you can use the tag p.
Example Code :

<!DOCTYPE html>
<html>
    <head>
        <!-- Your title web -->
        <title>Guide HTML | CusMeDroid<title>
    </head>
    <body>
        <h1>Title</h1>
        <p>Paragraph</p>
    </body>
</html>
                

Div is a divisional or section tag in an HMTL document. div elements are used as containers for other HTML elements, meaning that any kind of content can be inserted into <div>the tag . div stands for division, this element has no special meaning or is better known as an element that has no semantic meaning.
Example Code :

<!DOCTYPE html>
<html>
    <head>
        <!-- Your title web -->
        <title>Guide HTML | CusMeDroid<title>
    </head>
    <body>
        <h1>Title</h1>
        <p>Paragraph</p>
        <div>Integer Devision</div>
    </body>
</html>