Introduction of HTML

What is the HTML

  • HTML stands for Hyper Text Markup Language
  • HtML was develop by Tim Bemers Lee in 1991.
  • HTML document should be saved with .html
  • HTML is the standard markup language for creating Web pages.
  • HTML describes the structure of a Web page.
  • HTML elements tell the browser how to display the content.
  • HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
  • The current version of HTML is 5 and It was release 2014.
  • HTML was published by W3C in 1995.

    W3C (It is stand for World Wide Web.)

  • It is an organization.
  • It sets standard for WEB.

Webpage and Website

Webpage

  • A single document or page on the internet that contains text, images, links, and other elements.
  • Webpage is a digital document
  • Save with (.html)
  • Website

  • Collection of webpages is called a website.
  • Types of website

  • 1 Static Website
  • 2 Dynamic Website
  • Difference Between Dynamic Website and Static Website.

    Dynamic Website


  • 1) Changeable
  • 2) cContent various different users.
  • 3) To create dynamic website we need client side language (HTML+CSS) and server-side language (javascript,java php etc)
  • 4) Database is needed.
  • 5) E.g Instagram,Facbook,Youtube
  • Static Website


  • 1) Not Changeable.
  • 2) Same content is deliverd to multiple users.
  • 3) To create dynamic websites we have client-side language (HTML+CSS)
  • 4 )Not Need of database.
  • 5) E.g News website,blog website etc
  • Client and Server

    Client

  • Client is a user.
  • Client reruest for the desired files for the Server.
  • To Connect to the server a client is a web browser.
  • Server

  • It is a software Program. server will receive the client sequence and the will be respond to it by sending the user desirable files.
  • It file is not present .it will be display error 404! file not found.
  • Basic structure of HTML

    < !DOCTYPE html >
    < html lang="en" >
    < head >
    < meta charset="UTF-8" >
    < meta name="viewport" content="width=device-width, initial-scale=1.0" >
    < title >Document< / title >
    < /head >
    < body >
    I am body tag add content here... < /body >
    < /html >