Introduction to HTML

Introduction to HTML

Introduction to HTML:-



HTML stands for Hyper Text Markup Language. It is a static web page. HTML is also a scripting language. HTML is a markup language that web browsers use to interpret and compose text, images, and other material into visual or audible web pages.

Basic Syntax of Html:-

<!Doctype html>


<html>

  <head>

    <title>title of the page</title>

  </head>

  <body>

    <h1>Heading tag</h1>

    <p>This is a Paragraph tag</p>

  </body>

</html>
<!Doctype html>:- This tag tell as the version of HTML.

<head>:-It contains the title of the page. Using this tag we can also decorated our page.

<body>:- This tag is used to contain a web page's content, including hyperlinks,
images, tables, text, etc

Comments

Post a Comment