DEV Community

Rajesh
Rajesh

Posted on

HTML

1.WHAT IS HTML?

  • HTML stands for Hyper Text Markup Language

  • HTML is the standard markup language for creating Web pages

  • HTML describes the structure of a Web page

  • HTML consists of a series of elements

  • HTML elements tell the browser how to display the content

  • HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.

REFERED IN :https://www.w3schools.com/html/html_elements.asp

2.WHAT IS A HTML ELEMENTS?

The HTML element is everything from the start tag to the end tag

FOR EXAMPLE:

 <h1>My First Heading</h1>

 <p>My first paragraph</p> 
Enter fullscreen mode Exit fullscreen mode

NOTE:

THIS ALL ARE STARTING AND ENDING TAGS

REFERED IN : https://www.w3schools.com/html/html_elements.asp

3.WHAT IS A HTML META DATA

HTML Metadata is "data about data" that describes a webpage's content, technical settings, and ownership

  • ELEMENTS - ELEMENT IS WITH THE COMMENED

  • TAGS - TAGS IS NOTHING BUT h1,h2,h3,etc..,,

Top comments (0)