back

CodeWithRahul

More
  • Home
  • Cources
  • Tutorials
  • Tutorials
  • Projects
  • Notes
  • Contact
  • Work With Us
  • HTML
  • CSS
  • JAVASCRIPT
  • CC++
  • PHP
  • PYTHON
  • REACT JS
  • DSA

RahulGoswami.com

Create an account
  • INTRODUCTION
    • HTML Introduction
    • HTML Working
    • HTML Prerequisite
    • HTML Document
    • HTML Structure 1
    • HTML Page
    • HTML Structure 2
    • HTML Editor
    • HTML View Source
    • HTML Tags
    • HTML Element
    • VS Code
    • installation
  • HTML BASIC TAGS
    • Skeletal Tags
    • Heading Tags
    • Paragraph Tag
    • Horizontal Line Tag
    • Line Break Tag
    • Center Tag
    • Preserve
    • Formatting Tag
  • HTML FORMATTING TAGS
    • Monospaced Font
    • Text Abbreviation Tag
    • Acronym Tag
    • Text tags
  • HTML QUOTATIONS
    • Blockquote Tag
    • Quote Tag
    • Text Citation Tag
    • Text Direction Tag
    • Address Text Tag
    • Code Tag
  • HTML ATTRIBUTES
    • HTML Attributes
    • HTML Core
    • Attributes 1
    • Attributes 2
    • HTML Generic
    • Attributes 3
    s
  • HTML LINKS
    • HTML Links
  • HTML COMMENTS
    • HTML Comments
  • HTML IMAGES
    • HTML Images
  • HTML LISTS
    • HTML Lists
    • HTML Unordered List
    • HTML Ordered List
    • HTML Definition List
  • HTML TABLES
    • HTML Tables
  • HTML BLOCK ELEMENT
    • HTML Block
    • Elements
  • HTML INLINE ELEMENT
    • HTML Inline Elements
  • HTML FORMS
    • FORM Introduction
    • More on forms

    Skeletal Tags

    Some basic tags and their meanings are discussed below:

    skeletal-tag

    These three tags are known as “skeletal tags”.

    <html> tag : “root of an HTML page”

    Syntax:

    <html>
    //content
    </html>
    As discussed above, all the contents are wrapped in between the opening tag <html>and the closing tag </html>. In between <html> and </html> tag, our content contains two parts i.e. a header section i.e. <head>...</head> and a body section i.e. <body>...</body>.
    <head> tag : “header part of an HTML page”

    Syntax:

    <head>
    //content
    </head>
    Our header section starts from <head> and closes at </head> tag. It defines the head of a document. This tag contains meta tags i.e. <meta>....</meta> and a title tag i.e. <title>...</title>. The title is shown in the top tab of your browser but metadata is not displayed anywhere, it is generally used for SEOs and contains information about the document.
    <title> tag : “title part of an HTML page”

    Syntax:

    <title>
    //Any title Name
    </title>
    Our title section starts from <title> and closes at </title> tag. It defines the title of a document.
    <body> tag : “body part of an HTML page”

    Syntax:

    <body>
    //body content
    </body>
    Our body section starts from <body> and closes at </body> tag. It defines the body of a document. This tag contains various other tags. All the contents in between this tag are displayed on a web browse<pan>

    The below image shows the skeletal tags and must needed tags to define the layout of the webpage

    htmlBoilder
    Owner of this WebPage Image

    CodeWithRahul

    Copyright © 2023 CodeWithRahul.com