Computer Science, asked by beenabassi33, 4 days ago

What is HTML? Write three features of html​

Answers

Answered by AhitaR
3

Answer:

HTML is the combination of Hypertext and Markup language. Hypertext defines the link between the web pages.

Features of HTML:

•It is easy to learn and easy to use.

•It is platform-independent.

•Images, videos, and audio can be added to a web page.

•Hypertext can be added to the text.

•It is a markup language.

Answered by Anonymous
6

\tt{\Large{\underline{\green{What\;is\;HTML?}}}}

HTML is a HyperText Markup Language. It is used for the creation of webpages. HTML describes the structure of a website. HTML elements are also known as tags. HTML tells the browsers how to display the content.

\tt{\Large{\underline{\green{Features\;of\;HTML:-}}}}

  • It is an easy and simple language, it can be easily understood.

  • It is very easy to make an effective presentation with HTML.

  • It is a markup language.

\tt{\Large{\underline{\green{Structure\;of\;HTML:-}}}}

<!DOCTYPE html>

<html>

   <head>

       <title>Page Title</title>

   </head>

   <body>

       

   </body>

</html>

Every webpage much contains this co‎de. Below is the explanation of each of the tags used in the above HTML co‎de.

  • <!Doctype> tag defines the document type.

  • <html> tag defines the HTML document.

  • <head> tag defines the information for the document.

  • <title> tag defines the title of the document.

  • <body> tag defines the body of the document.

Tags are always enclosed in angle brackets: < >. And closing tags always proceed the element with a /.

\tt{\Large{\underline{\green{Remember:-}}}}

HTML is a Markup Language and not a Programming language.

______________________________________

Similar questions