Table of contents
No headings in the article.
*HTML
*What is HTML?
Answer:- •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 tell the browser how to display the content
•HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
*Example:- <!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>heading</h1>
<p>paragraph</p>
</body>
</html>
Q)How Many HTML tags?
•answer:- There are four(4) Required Tags.
There Are HTML, TItle, Head And Body.