0% found this document useful (0 votes)
5 views

Revision Assignment_Grade 6_HTML_24_25

Uploaded by

bemkhu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

Revision Assignment_Grade 6_HTML_24_25

Uploaded by

bemkhu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

REVISION ASSIGNMENT (MT3)

CLASS: 6

SYLLABUS-COMP SC MONDAY TEST


1. Chapter -6 (INTRODUCTION TO HTML 5)
Revise from notes and question answers done in the notebook as well as let’s review and
book back exercise of the chapter.

1. Choose and write the correct answer:


a) _____________ tag is used to shift the text following it to the next line.
i) <HR> ii) <PR> iii) <BR> iv)<P>
b) Which of the following tag is used to get the output like – hello everyone ?
i) <I> and<B> ii)<B> and <A> iii) <I> and <U> iv)<B> and <U>
c) The tags which are ignored by the browser but help us to explain our codes.
i) <h1> ii) title tag iii) comment tag iv) subscript tag

2. Fill in the blanks:

a) The software used to display the web pages is called _________________


b) A user is not required to learn the HTML code or commands in
____________editor.
c) ___________ are building blocks of a web page.
d) HTML element that has a start tag and end tag is called ___________

3. Name the following:


a) The collection of all the websites available on the internet____________
b) The property that provides the additional information about the HTML element.
______________
c) The tag used to draw a horizontal line across the web
page._________<HR>________________

4. Write one line of source code for the following:


a. To write the formula- x2+y2
b. To write the text- Hello Everyone in bold and italic
c. To display the text “Consistency=Success” in smallest heading size.
d. To display the text- Keep Smiling
5. Find the errors in the following HTML code and rewrite the corrected code.
a) <HTML>
<TITLE><HEAD>MY FIRST WEB PAGE </HEAD>
</TITLE>
<BODY>
<Head5>Wonderful Idea</Head5>
b) <HR></HR>
X<SUPERSCRIPT>2<SUPERSCIPT>Y
</BODY></HTML>

6. Write HTML code to create the following web page after considering the given
specifications:
• The title of the web page is “Seasons”
• Text – “WE WELCOME RAINY SEASON “ should appear in the biggest heading
• Draw a horizontal line across the web page.
• The text – “We see everyone enjoying the rain” should appear in bold and
underlined.
• In the next line –“Black clouds in the sky” should appear in italics.
• The text “flowers “ should appear in the upper textline of Beautiful

Answer
<html>
<head>
<title>SeasonS</title>
</head>
<body>
<h1>WE WELCOME RAINY SEASON </h1>
<hr>
<b><u>We see everyone enjoying the rain</u></b>
<br>
<i>Black clouds in the sky</i>
<br>
beautiful<sup>flowers</sup>
</body></html>

You might also like