Posts

Showing posts from November, 2023

HTML

Image
  HTML: *HTML stands for Hyper Text Markup Language. *HTML is the standard markup language for creating Web pages. *HTML describes the structure of a Web page. *HTML consists of a series of elements. * HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc. STRUCTURE OF HTML: <DOCTYPE HTML!> <html> <head> <title> page title </title> </head> <body> <h1> my first heading </h1> <p> my first paragraph </p> </body> </html> HEADING TAGS: *HEADING TAG is defined with the < h1> to <h6 > tags. * <h1>  is most important heading. <h6> is least important heading. EXAMPLE: <DOCTYPE html!> <html> <head> <title> page title </title> <body>              <h1> big header </h1>              <h2> medium header </h2...