What is HTML? Write three features of html
Answers
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.
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.
- 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.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
</body>
</html>
Every webpage much contains this code. Below is the explanation of each of the tags used in the above HTML code.
- <!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 /.
HTML is a Markup Language and not a Programming language.