Introduction to HTML

Introduction to HTML

What is HTML?

HTML Stands for (Hyper Test Markup Language).

  • Html mainly used to create/design front-end development.

  • Actually, it builds the structure of the Object.

  • And, html is easily understandable language.

  • the given below program is a sample one,

    <!DOCTYPE Html>

    <head>

    <title>SAMPLE PROGRAM</title>

    </head>

    <body>

    <p> HI i am harikiran </p>

    <h1>Hello World</h1>

    <h2>Hello World</h2>

    <h3>Hello World</h3>

    <h4>Hello World</h4>

    <h5>Hello World</h5>

    <h6>Hello World</h6>

    </body>

    </html>

  • Html code is starts for <!DOCTYPE html> .

  • <head> : The code execute starts from header part that is head and ends with </head>.

  • <tiltle> : Is the name of the website. we can give any name to the title.

    ex: Mahesh babu,Namratha,.....,...

  • <body> : In this body part code is we can see on the screen.

  • <p> : We can write anything inside the paragraph.

  • <h1> : It is used to give heading lines command. there are 6 types of head lines command h1,h2,h3,h4,h5 and h6.

  • </body> : It close the body part.

  • </html> : html code is ends with this command.

    Thank you.

    G.Harikiran