jagan josh

HTML Tutorial

HTML (HyperText Markup Language) is a markup language used to structure and organize the content on a web page. HTML consists of a series of elements, which are used to enclose different parts of the content to make it appear a certain way or act a certain way.

(img_verions_1.0.0)

Here are some basic concepts of HTML:

  • HTML documents must start with a document type declaration: <!DOCTYPE html>.
  • The visible part of the HTML document is between <body> and </body>.
  • HTML paragraphs are defined with the <p> tag.
  • HTML links are defined with the <a> tag.
  • HTML images are defined with the <img> tag.
  • HTML elements can be nested inside each other to create a tree-like structure of the content on the web page.
  • HTML elements can have attributes, which are used to provide additional information about the element.