What is HTML

What is HTML?
HTML is a markup language for describing web documents (web pages).
HTML is useful for static contents of a webpage , for creating website we need
HTML .
  1. HTML stands for Hyper Text Markup Language
  2. A markup language is a set of markup tags
  3. HTML documents are described by HTML tags
  4. Each HTML tag describes different document content

For Creating a simple webpage, open notepad or other editor then write the blew tags in your
editor.

Example:

<html>
<head>
<title>Title of Page</title>
</head>
<body>

<h1>Heading 1 Example </h1>

<h2>Heading 2 Example </h2>
<h3>Heading 3 Example </h3>
<h4>Heading 4 Example </h4>
<h5>Heading 5 Example </h5>
<h6>Heading 6 Example </h6>   
<p>paragraph Example .</p>

</body>
</html>


After written the above tags save that with format of  (.html) in your PC , then open it by
browser

the result will look like below:

No comments:

Post a Comment