🔥 Burn Fat Fast. Discover How! 💪

Simple HTML questions for beginners: 1) What is HTML? HTML s | Coding interview preparation

Simple HTML questions for beginners:

1) What is HTML
?

HTML stands for Hyper Text Markup Language. It is a language of World Wide Web. It is a standard text formatting language which is used to create and display pages on the Web. It makes the text more interactive and dynamic. It can turn text into images, tables, links.


2) What are Ta
gs?

HTML tags are composed of three things: an opening tag, content and ending tag. Some tags are unclosed tags.

HTML documents contain two things: content and tags

When a web browser reads an HTML document, the browser reads it from top to bottom and left to right. HTML tags are used to create HTML documents and render their properties. Each HTML tags have different properties.

content


3) Do all HTML tags have an end
tag?

No. There are some HTML tags that don't need a closing tag. For example: tag,
tag.


4) What is formatting i
n HTML?

The HTML formatting is a process of format the text for a better look and feel. It uses different tags to make text bold, italicized, underlined.
More details.


5) How many types of heading does an HTM
L contain?

The HTML contains six types of headings which are defined with the

to

tags. Each type of heading tag displays different text size from another. So,

is the largest heading tag and

is the smallest one. For example:

Heading no. 1


Heading no. 2


Heading no. 3


Heading no. 4


Heading no. 5

Heading no. 6

More details.