Skip to content
beginners
  • Home
  • Tutorial
  • Web Development
Introduction
Editor
Elements
Attributes
CSS
Heading Tag
Paragraph Tag
Anchor Tag
Text Formatting
HTML Blockquote
Image Tag
Table Tag
List Tag
HTML Form
Commaet Tag
Class And ID
Responsive

HTML Elements

  • January 16, 2022August 7, 2022
  • by root

HTML Elements

All the tags are called elements of HTML. An element has start tag and closing tag.

Syntax:

<Start_Tag_Name> Write some text here... </End_Tag_Name>

<h1> Write some text here... </h1>

<p> Write some text here... </p>

Some elements have not end_tag_name called empty element, e.g. <br>.

<br> tag is for break the line.

You have a long paragraph and you want to break the line and start from new line you can use <br> tag.

Sytax:

<p>I am paragraph text and <br> break the line. Can you see the difference </p>

Output:

Hello
Theme by Colorlib Powered by WordPress
  • Disclaimer