NATIONAL PUBLIC SCHOOL, SADASHIVANAGAR, BANGALORE
Class VII
Subject: Computer Science
Chapter 6 Introduction to HTML
Practice Zone page no. 91
1. WWW is a collection of interconnected webpages identified by an address called URL.
2. HTML stands for Hyper Text Markup Language.
3. A Tag is an HTML command that defines the manner in which the content should be formatted and displayed in
the browser.
4. The <BODY> tag is used to define the content to a webpage that is displayed in the browser.
5. Container tags have starting as well as an ending tags.
Assessment Zone page no. 95
A. Choose the correct answer.
1. c) <BODY>
2. c) Tags cannot be nested
3. c) Google Chrome
4. b) between the opening and closing of <HEAD> tag.
5. d) <HR>
B. Fill in the blanks using the words given below.
1. An attribute is a special keyword used inside the tag to specify additional information about the tag.
2. HTML editor is software program that enables you to easily create HTML documents.
3. A tag that requires an opening as well as a closing tag is called a container tag.
4. The HEAD tag identifies the document as an HTML document.
C. Answer the following questions.
1. What is HTML?
Ans: HTML or Hyper Text Markup Language is used to design web pages.
2. What are the two types of HTML editors? Explain them briefly.
Ans: The two types of HTML editors are:
WYSIWYG Editor : It stands for What You see Is What You Get. These editors provide an in-built interface
wherein you can quickly design webpages without writing any HTML tags as well as preview the webpages.
Text Editor: Text editors such as Notepad and WordPad let us create HTML documents by writing HTML
commands.
3. List the tags that form the basic structure of an HTML document.
Ans: The basic structure of an HTML document is:
<HTML>
<HEAD>
<TITLE> Title of the webpage </TITLE>
</HEAD>
<BODY>
Tags that define the content of a webpage are written here.
</BODY>
</HTML>
*****