एचटीमल | HTML, What is HTML

HTML | Learn HTML | HTML Tutorial | What is HTML?

HTML

HTML : Hyper Text Markup Language. HTML is used to create web pages. HTML is widely used language on the web. We can create static website by HTML.


Example:-


<!DOCTYPE>
<html>
<body>
<h1>Write Your First Heading</h1>
<p>Write Your First Paragraph</p>
</body>
</html>

Example Description

  • DOCTYPE: It defines the document type.
  • html: html tag describes the web document.
  • body: body tag describes the body content of the page.
  • h1: h1 tag describes the heading of the webpage.
  • p: p tag describes the paragraph of the webpage.

Example Output

Write Your First Heading

Write Your First Paragraph

HTML is a very Easy and Simple language. It is a markup language so it provide a design web pages.

एक टिप्पणी भेजें

0 टिप्पणियाँ