Introduction to HTML

HTML (HyperText Markup Language) is the standard language used to create web pages.

Basic Structure

<html>
  <head>
    <title>My Page</title>
  </head>
  <body>
    Hello World
  </body>
</html>

HTML uses tags such as headings, paragraphs, links, tables, and images.

Css_Basics