You are on page 1of 2

DELHI PUBLIC SCHOOL (BATHINDA)

COMPUTER WORKSHEET (SESSION: 2022-23)


TOPIC – INTRODUCTION TO WEBPAGE TOOLS
CLASS – VIII

1. Tick the correct option:


A. Which HTML tag is used to insert the title in the HTML document?
a) <HEAD> b) <TITLE> c) TITLE
B. Page designed in HTML is called as _________________.
a) Front Page b) web Page c) Server Page
C. We can write HTML code by using _____________.
a) Microsoft Word b) Notepad / Text Editor c) WordPad
D. HTML markup language is a set of Markup____________.
a) Tags b) Group c) Sets
E. Which HTML, tag displays the text as the smallest heading?
a) <H1> b) <H5> c) <H6>
F. HTML program can be read and rendered by ___________________ (b)
a) Compiler b) Web Browser c) Interpreter
G. HTML tags are not _____________.
a) Predefined b) Language c) Case-Sensitive
H. HTML documents contain 1 root tag is called _____________________.
a) HTML b) HEAD c) TITLE

2. Fill in the blanks:


A. A _attribute_____________ is a special keyword used inside the tag to specify

additional information about the tag.

B. A Tag requires an opening as well as closing tag is called ____container

tags____________.

C. HTML stands for _______Hyper text Markup Language_____.

D. HTML was firstly proposed in a year_____1993____________.

E. ______<img>______________tag is used to insert the image in HTML.


F. In HTML we use ____<b>_________________ tag to define bold text.

3. State True or False:


A. HTML Tags may be in uppercase or in Lowercase. TRUE

B. The TITLE tag can be placed anywhere in the HTML document. TRUE

C. All HTML tags have closing Tag associated with it. FALSE

D. The HR tag breaks the line and display the text from next line. FALSE

E. HTML is available to developers or web designers free of cost. TRUE

F. HTML is a platform independent. TRUE

4. Find the errors in the following lines of HTML code and write the correct code.

<HTML>
Correct Coding:
<HEAD>
<TITLE> SECOND PAGE <HTML>

</HEAD> <HEAD>

<TITLE> <TITLE> SECOND PAGE</TITLE>

<BODY> HTML CODING </HEAD>


<BODY> HTML CODING</BODY>
</HTML>

5. Write the Output of this coding:


<HTML> Output:
<head><title>123 </title></head>
<BODY>
<H2> Spectacular Mountain </H2>
<img src="pic_mountain.jpg"
width= “304” height=”228">
<B> With Border</B>
</HTML>

You might also like