Skip to main content

Computer Test Answers Class 6 (Introduction to HTML)

HTML, or HyperText Markup Language, is the basic language used to create web pages. It is a simple language that uses special codes called tags to structure content on a webpage, such as text, images, links, and more. Here are questions for practice with answers from the chapter of Introduction to HTML for students of Class 6 of CBSE Board. 

Introduction to HTML for Class 6 CBSE students with basic HTML tags and webpage structure explained - jkm
Introduction to HTML for Class 6 CBSE | JK Online Classes

Introduction to HTML

- Structure of Web Pages: HTML provides the structure of a webpage, much like a skeleton for a body. It tells the browser how to display the different parts of a webpage.

- Tags and Elements: HTML uses tags, such as <p> for paragraphs or <h1> for headings, to organize and format content. Tags are written within angle brackets < >.

- Basic HTML Document: Every HTML document has a standard structure:

- <html>: The root tag that starts and ends the HTML document.

- <head>: Contains information about the webpage, like the title.

- <title>: Sets the title of the webpage shown on the browser tab.

- <body>: Contains all the main content like text, images, and links.

Read Brief Introduction of HTML by clicking here

Answers of Computer Test Class 6 (26 October 2024)

A. Fill in the blanks:

1. HTML stands for HyperText Markup Language.

2. The basic structure of an HTML document begins with the <html> tag.

3. To add a title to a web-page, we use the <title> tag within the head section.

4. The <body> tag contains the main content of the web-page.

5. The <p> tag is used to create a paragraph in HTML.


B. Choose the correct answer:

1. The tag used to create a heading in HTML is:

a) <head>
b) <p>
c) <h1>
d) <title>


2. What is the purpose of the <hr>  tag?

a) To cretae a paragraph.
b) To create a division.
c) To create a horizontal line.
d) None of these.


3. HTML tags are enclosed in:

a) Curly brackets { }
b) Angle brackets < >
c) Square brackets [ ]
d) Round brackets ( )


4. The <img> tag is used to:

a) Add a link
b) Add a video
c) Display an image
d) Create a heading


5. What is an element?

a) A piece of text that appears outside a tag
b) A piece of text that appears inside a tag
c) A combination of a start tag, some content, and an end tag.
d) None of these.


C. Write 'T' for True and 'F' for False:

1. HTML stands for HyperText Marking Language. False
2. HTML files can be viewed in any web browser. True
3. HTML document is written using special syntax within square brackets. False
4. HTML tags are not case-sensitive, so <HTML> and <html> mean the same thing.  True
5. The closing tag should have a clsoing bracket at the end.       True


D. Answer the following questions:

1. What is HTML? Write its features. (3 Marks)

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

Features of HTML:
- Structure: HTML helps organize the content on a webpage, such as text, images, and links.
- Tags: HTML uses special codes called tags (like `<p>` for paragraphs) to format and display content.
- Links: HTML allows you to create links to other webpages, making it easy to navigate the internet.

2. Differentiate between container tags and empty tags. (3 Marks)

- Container Tags: These tags have both an opening tag and a closing tag. For example, `<p>This is a paragraph.</p>`. The text between the tags is affected by them.
- Empty Tags: These tags do not have a closing tag. They are self-contained. For example, `<img src="image.jpg">` is used to show an image and does not need a closing tag.

3. Write the basic structure of an HTML document. (4 Marks)

The basic structure of an HTML document looks like this:

<!DOCTYPE html>
<html>
<head>
  <title>My First Webpage</title>
</head>
<body>
  <h1>Welcome to My Webpage</h1>
  <p>This is my first HTML page!</p>
</body>
</html>

------------------------------------

Click Here to Practice More HTML Question

**END**

🔴Beware of Cyber-Crime & Cyber-Fraudulent🔴

Comments

Popular posts from this blog

Chapter 6 Devotional paths to the Divine summary with NCERT Solution 2025

  Class 7 - Social Science - History - CBSE - NCERT Chapter 6 Devotional Paths to the Divine Summary of Devotional Paths to the Divine with NCERT Solution In the past, people worshipped many gods and goddesses in different ways. But as kingdoms grew and people came together, new religious ideas developed. One important belief was that all living beings go through many births and rebirths based on their good and bad deeds. Some people felt that social divisions were unfair and looked for new ways to reach God. This led to the rise of Bhakti (devotion) and Sufism (Islamic mysticism).   The Bhakti Movement   Bhakti means deep love and devotion to a single god or goddess. It teaches that anyone, rich or poor, high caste or low caste, man or woman, can worship God with a pure heart. The Bhagavad Gita, a Hindu holy book, talks about Bhakti.   In South India, the Nayanars (devotees of Shiva) and Alvars (devotees of Vishnu) spread the idea of Bhakti through be...

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 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 browse...