A Beginner's Guide to HTML: The Web's Structure

A Beginner's Guide to HTML: The Web's Structure

·

1 min read

File:HTML5 logo and wordmark.svg

HTML for Beginners : Building the Skeleton of a Webpage

HTML stands for Hyper Text Markup Language.

HTML is a building block of any website. HTML is like the basic building block or skeleton of webpage just like car as you all see in the below given figure .

SEMENTIC ELEMENTS IN HTML

SEMENTIC AND NON SEMENTIC

HTML HEADINGS

  • HTML consist of 6 tags of headings which are in descending order.

  • <H1> and <H6>.

  • <H1> is main heading tag used for the main title of a page.

  • <H6> is least important heading tag in all tags.

Understanding HTML Tags and Elements

HTML TAGS

  • Tags are which that contain both opening and closing tags.

  • Like <a> tag for link.

  • <p>tag for paragraph.

  • <h>tag for heading.

HTML ELEMENT

  • HTML element is which that contain both opening and closing tags and content.

  • for example → <p>This photo is so good.</p> .

  • <p></p> are tags and This photo is so good is content. Combination of both tags and content are known as element.