Computer Science, asked by trisha014, 8 months ago

Write the HTML code for the following output.

What is HTML?

HTML is the standard markup language for creating Web pages.

 HTML stands for Hyper Text Markup Language

 HTML describes the structure of Web pages using markup

 HTML elements are the building blocks of HTML pages

 HTML elements are represented by tags

 HTML tags label pieces of content such as "heading", "paragraph", "table",

and so on

 Browsers do not display the HTML tags, but use them to render the

content of the page

Answers

Answered by sg249344
2

What do want to know you can tell me I am master of Html

Answered by VISHALKUMARV22
4

<html>

 <head>

    <title>Title of the Page</title>

 </head>

<body>

<h2> What is HTML?  </h2>

<p> HTML is the standard markup language for creating Web pages. </p>

 HTML stands for Hyper Text Markup Language .

 HTML describes the structure of Web pages using markup .

 HTML elements are the building blocks of HTML pages .

 HTML elements are represented by tags .

 HTML tags label pieces of content such as "heading", "paragraph", "table",

   and so on .

 Browsers do not display the HTML tags, but use them to render the content of the page.

</body>

</html>

Similar questions