Skip to main content

HTML Class 6 Questions and Answers with Examples (January 2026) | JK Online Classes

 HTML Class 6 – 30 Important Questions & Answers with Examples (Jan 2026)

HTML-CLASS-6-QUESTION-ANSWERS-FOR-PRACTICE-2026-J-K-ONLINE-CLASSES-ONLINE-TUITION-CLASSES
HTML Class 6 Question Answers 2026 (J K Online Classes)

Q1. What is HTML?

Answer:

HTML stands for HyperText Markup Language. It is used to create web pages.


Q2. Is HTML a programming language?

Answer:

No, HTML is a markup language, not a programming language.


Q3. What is a web page?

Answer:

A web page is a document written in HTML and shown using a web browser.


Q4. What is a website?

Answer:

A website is a collection of many web pages connected together.


Q5. Name any two web browsers.

Answer:

Google Chrome and Mozilla Firefox.


Q6. What are HTML tags?

Answer:

HTML tags are special words written inside angle brackets `< >`.

Example: <p>This is a paragraph</p>


Q7. What is an HTML element?

Answer:

An HTML element consists of a start tag, content, and an end tag.

Example: <b>Bold Text</b>


Q8. What is the use of `<html>` tag?

Answer:

The `<html>` tag tells the browser that the document is an HTML file.

Example: <html>

</html>


Q9. What is the use of `<head>` tag?

Answer:

The `<head>` tag contains information about the web page.

Example: <head>

<title>My Website</title>

</head>


Q10. What is the use of `<title>` tag?

Answer:

The `<title>` tag shows the page title on the browser tab.

Example: html

<title>HTML Class 6</title>


Q11. What is the `<body>` tag?

Answer:

The `<body>` tag contains all the visible content of the web page.

Example: <body>

Welcome to my page

</body>


Q12. What is the `<p>` tag used for?

Answer:

The `<p>` tag is used to write a paragraph.

Example: <p>This is my first paragraph.</p>


Q13. What is the `<br>` tag?

Answer: 

The `<br>` tag is used to break a line. It is an empty tag.

Example: Hello<br>World


Q14. What are heading tags?

Answer:

Heading tags are used to write headings in HTML.


Q15. How many heading tags are there?

Answer:

There are six heading tags: '<h1>' to '<h6>'.

Example: 

<h1>Main Heading</h1>

<h3>Sub Heading</h3>



Q16. Which heading tag is the largest?

Answer:

'<h1>' is the largest heading tag.


Q17. What is the '<b>' tag used for?

Answer:

The '<b>' tag makes text bold.

Example: <b>Important Text</b>


Q18. What is the '<i>' tag used for?

Answer:

The '<i> tag makes text italic.

Example: <i>Italic Text</i>


Q19. What is the `<u>` tag used for?

Answer:

The '<u>' tag underlines text.

Example: <u>Underlined Text</u>


Q20. What is an empty tag?

Answer:

An empty tag does not have a closing tag.

Example: <br>, <hr>


Q21. Name any two empty tags.

Answer:

'<br>' and '<hr>'.


Q22. What is the '<hr>' tag?

Answer:

The `<hr>` tag draws a horizontal line.

Example: <hr>


Q23. What is an attribute in HTML?

Answer:

An attribute gives extra information about an HTML tag.

Example: <p align="center">Centered Text</p>


Q24. Write the basic structure of an HTML document.

Answer:

<html>

<head>

<title>My First Page</title>

</head>

<body>

Hello HTML

</body>

</html>


Q25. Which software can be used to write HTML?

Answer:

Notepad can be used to write HTML.


Q26. What is the extension of an HTML file?

Answer:

'.html' or '.htm'

Example: index.html'


Q27. Can HTML work without the internet?

Answer:

Yes, HTML files can be opened without internet.


Q28. Who invented HTML?

Answer:

HTML was invented by Tim BernersLee.


Q29. What is HyperText?

Answer:

HyperText is text that contains links to other pages.


Q30. Why is HTML important?

Answer:

HTML is important because it is the basic language of all websites.

~~~THE END~~~

*For any kind of correction/removal please provide valid detail with link in comment section or contact us* 🔴Beware of Cyber-crime and cyber-fraudulent🔴
For any kind of query related to topics please comment.

Comments