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
  • 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

    HTML Element

    What is an HTML Element?

    HTML Element is a combination of the start tag, content, and end tag.
    HTML Element = Start tag + Content + End tag
    For example :
    <h1> This is our first heading </h1>

    This is a heading element.

    What is a Nested HTML Element?

    Nested HTML Element is the elements in which one HTML element are followed by another HTML element.
    Nested HTML Element = One HTML element inside another HTML element
    For example :
    <h1><b> This is our first heading </b></h1>

    This is a bold tag inside the heading element.

    What is an Empty HTML Element?

    Empty HTML Element is the element in which tags do not have any content.
    Empty HTML Element = Tags with no content
    For example :
    </br>
    This is a break tag having no content. <hr/> is also an example of this.
    These tags are known as “empty elements”.
    Owner of this WebPage Image

    CodeWithRahul

    Copyright © 2023 CodeWithRahul.com