Why Learn HTML?

  • Make Website And Webpage
  • Career as a Webdesigner
  • Make Website And Webpage Career as a Webdesigner

Introduction Of HTML

  • HTML stands for Hyper Text Markup Language.
  • HTML is the markup language for creating Web pages.
  • HTML describes the structure of Web page.
  • HTML was created in 1991. The first Version of HTML was 1.0, but the first standard version was 2.0, published in 1999.

Basic Of HTML

  • The <!DOCTYPE html> declaration defines that this document is an HTML5 document
  • The <html> element is the root element of an HTML page
  • The <head> element contains meta information about the HTML page
  • The <title> element specifies a title for the HTML page
  • The <body> element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
  • The <h1> element defines a large heading
  • The <p> element defines a paragraph

HTML Documents

  • All HTML documents must start with a document type declaration: <!DOCTYPE html>.
  • The HTML document itself begins with <html> and ends with </html>.
  • The visible part of the HTML document is between <body> and <body>.

The <!DOCTYPE> Declaration

  • The <!DOCTYPE> declaration represents the document type, and helps browsers to display web pages correctly.
  • The <!DOCTYPE> declaration is not case sensitive.
  • <!DOCTYPE html>