WorksheetsHTML - 60 ISH
Total questions: 80
Worksheet time: 40mins
HTML language is used to create………………
Web browser
Webpage
None of these
Document
HTML is the standard …………based language for creating web pages.
Tag
Text
Code
Word
HTML was developed in ……………
1980
1989
1994
1999
The first version of HTML was released in ………………
The current version of HTML is .....................
Current of HTML is released on December ....................
1993, 5.2, 2017
1992, 5.1, 2019
1989, 5.0, 2020
1970, 5.4, 2022
Which statement given below is incorrect ?
HTML created webpage can be opened in
Internet Explorer
Notepad is a basic text editor for HTML
coding.
HTML is a very simple language to create
webpages
Notepad is used to display any
webpage
Which is given below not a text editor for HTML coding ?
WordPad
Notepad
TextEdit
Notepad++
.................is the extension of a webpage.
HTL
URL
HTML
HTTP
Without a…………users can't access a webpage on Internet
Link
Tag
FTP
URL
…………is used to type URL of any website in a web browser.
Address Bar
Title bar
Website
Webpage
……….are special codes that tell the web browser how to display the content on a webpage.
None of these
Tags
HTTPS
URL
Tags are usually written inside ..................brackets
{ }
< >
( )
[ ]
Which is given below not a container tag ?
<H1>
<img>
<html>
<p>
…………tag contains information that is not displayed in a webpage.
<HEAD>
<HTML>
<TITLE>
<BODY>
…………contains
all visible elements like text, images, links, videos, headings, paragraphs, listsand tables.
<html>
<head>
<title>
<body>
Which tag is used to set background colour in a webpage ?
None of these
<bgcolor>
<background Color>
<textcolor >
<br> tag is used for ………….
line break
Sentence break
Section break
Page break
HTML is a case sensitive language.
TRUE
False
………….tag is used to display lowest heading level in a webpage.
<h6>
<h2>
<h5>
<h1>
…………..is an empty tag.
<b>
None of these
<body>
<p>
Which statement of syntax is correct ?
<Font color="blue" Hello </font>
<Font> color="blue"> Hello </font>
<Fontcolor="blue"> Hello </font>
<Font color="blue"> Hello </font>
………………tag in HTML is used to create hyperlinks.
<b>
<hypertext>
<hyperlink>
<a>
</h> is used for .....................
Closing header tag
Head Tag
Half of a tag
Header Tag
</p> tag is used for .............
create paragraph tag
closing paragraph tag
closing punctuation tag
None of these
An attribute is a.........................
None of these
Allows for no changes to the site
How behaviour and display of tags in
webpage
Applies changes to everything in a webpage
Which symbol used in closing tag ?
<>
/
\
=
Which tag is used to create description list ?
<LI>
<UL>
<OL>
<DL>
An ordered list begins with______ and ends with_________
<ol>and</ul>
<ol> and </al>
<al> and </al>
<ol>and</ol>
The <tr> tag is used to define a
Table Column
Table Record
Cell
Table row
Which list tag would you use for an unordered list ?
<a></a>
<ul></al>
<ol></ol>
None of these
To set the image size, Which command should I use?
long="400"
width="400"
short="400"
center="400"
What is the correct HTML code for creating a hyperlink?
<a url="https://www.google.com"> OpenGoogle</a>
<a href="https://www.google.com"> </a>
<a href="https://www.google.com"> OpenGoogle <a>
<a href="https://www.google.com"> Open Google </a>
Which of the following is the correct HTML syntax for inserting an image ?
<image src="apple.jpg">
<img ="apple.jpg">
<img src="apple.jpg">
<img>apple.jpg</img>
Which is not an attribute of IMG
Width
<href>
Src
Alt
Which is the proper way to write an h1 tag ?
<h1>Hello</h1>
<h1>Hello<h1>
<h1>"Hello
{h1}Hello{/h1}
Which is not an attribute of body tag ?
text
bgcolor
background
size
Which sequence of HTML tags is correct?
<html><head><title></title></head><body></body></html>
<html><head><title><body></title></head></body></html>
<html><head><title></head><body></body></title></html>
<html><head><title><body></body></title></head></html>
Which is not a tag ?
<body>
<Src>
<Li>
<BR>
( type="A" ) is the attribute of ...............tag.
<OL>
<DL>
<LI>
<UL>
<Th> tag used in ...........
Image
Oder list
Table
None of these
TD stands for ..................
title data
title document
title docs
table data
It is used to specify amount of spacing between cell border and cell content.
Cell spacing
cell padding
Cell sizer
cell width
It is used to specify amount of spacing between two adjacent cells.
Cell Padding
Cell Spacing
Cell Adjuster
Cell increase
Which syntax is correct to apply border around the table & cells
<table-border="2">
<table border="2">
<table "border"=2>
<table cell border="2">
Which tag is used to create fields in a table ?
<tr>
<td>
<th>
<field>
Which is not a table attribute ?
Cell Padding
Cell Spacing
Table color
Border
The.................... tag is used to add a short descriptive text or caption that placed above a table.
<table header>
<cell header>
<caption>
<none of these>
Which is used to make a single cell span across multiple rows in a table
Colspan
Rowspan
Cellspan
Columnspan
It is used to make a single cell span across multiple column in a table
Colspan
Rowspan
Cellspan
Fieldspan
correct syntax of comment tag is ..............
< insert comment here >
< insert comment here !>
<! insert comment here >
<!! insert comment here >
.......... attribute of an image specifies alternate text, that will be displayed if the image cannot be displayed for any reason.
alt
alternate
text
none of these
By default <UL> type attributes is .....................
Square
Disc
Circle
Oval
By default <OL> type is .................
A
a
i
1
I
There are two attributes of <OL>
"Squre" , "Disc"
"Type" , "Start"
None of these
"Start" , "Stop"
Assertion: HTML considers Uppercase & Lowercase letters as same.
Reason: HTML is not a case sensitive language.
Both (A) and (R) are correct and (R) is correct explanation of (A).
Both (A) and (R) are correct and (R) is not the correct explanation of (A).
(A) is true but (R) is false.
(A) is false but (R) is true.
Assertion: The ul element is used to create an ordered list in HTML.
Reason: the ul element stands for “unordered list” and is used to create a bulleted list in HTML
Both (A) and (R) are correct and (R) is correct explanation of (A).
Both (A) and (R) are correct and (R) is not the correct explanation of (A).
(A) is true but (R) is false.
(A) is false but (R) is true.
Assertion : <img> tag is require just a starting tag and not an ending tag.
Reason : In HTML <IMG> tag is an empty tag.
Both (A) and (R) are correct and (R) is correct explanation of (A).
Both (A) and (R) are correct and (R) is not the correct explanation of (A).
(A) is true but (R) is false.
(A) is false but (R) is true.
Assertion : The anchor tag <a> is used to create hyperlinks in a web document.
Reason : The primary purpose of an anchor tag is to insert image in a webpage.
Both (A) and (R) are correct and (R) is correct explanation of (A)
Both (A) and (R) are correct and (R) is not the correct explanation of (A).
(A) is true but (R) is false.
(A) is false but (R) is true.
Assertion : HTML is a Markup language.
Reason : HTML is used to structure or format text with the help of predefined tags.
Both Assertion (A) and Reason (R) are true and Reason (R) is a correct explanation of Assertion (A).
Both Assertion (A) and Reason (R) are true but Reason (R) is not a correct explanation of Assertion (A).
(c) Assertion (A) is true and Reason (R) is false.
(d) Assertion (A) is false and Reason (R) is true.
The .................attribute of the anchor tag can be used to “jump” to a specific point on a page.
name
href
alt
title
.................attribute of anchor tag provides text that will be displayed when the user mouse over a link
name
alt
title
href
<! .....................>
is used to insert ....................
comment
heading
paragraph
message
(A) Comments are not displayed in the web browser.
(B) Comments are visible to anyone who views the page source code.
Both (A) and (B ) Statements are True
Both (A) and (B ) Statements are False
Statement (A) is True and Statement (B) is False
Statement (A) is False and Statement (B) is True
<ol Type "A">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
According to this coding which option given below is correct ?
1 Coffee
2 Tea
3 Milk
A Coffee
B Tea
C Milk
i Coffee
ii Tea
iii Milk
This table is an example of............
row span
col span
This table is an example of ...................
Row Span
Col Span
None of these
Which is given below not an attribute of <TR>
Align
Width
Height
Border
Which is given below not an attribute of <TD> in HTML table
bgcolor
rowspan
colspan
height
Which is given below not an attribute of a Table in HTML ?
Border
Cell Padding , Cell Spacing
Alt
Width
Align
Which statement is false :-
Statement (A) : Cell Padding is used to specify amount of spacing between cell border and cell content.
Statement (B) : Bgcolor is used to set the border color of the table.
Statement (C) : Cell Spacing is used to specify amount of spacing between two adjacent cells.
Statement (A)
Statement (B)
Statement (C)
All statements are True
Which statement is false :-
Statement (A) : "Src" is a necessary attribute that describes the source or path of the image..
Statement (B) : "Alt" Specifies alternate text that will be displayed if the image cannot be displayed for any reason.
Statement (C) : "Align"- Positions the image vertically such as left, right and Left is default align for image.
Statement A is false
Statement B is false
Statement C is false
All Statements are TRUE
Which is given below not an attribute of Font ?
Size
Color
Face
Style
Which is given below not an attribute of Body ?
bgcolor
text
background
size
Which is correct sequence of tags in description list?
<DL><DT></DT><DD></DD></DL>
<DL></DL><DT></DT><DD></DD>
<DL><DT><DD></DD></DT></DL>
<DL><DD></DD><DT></DT></DL>
<dd> stands for .....................
description definition
description default
description determination
description define
<dt> stands for .............
description term
description title
description time
description termination
The ................. attribute of the anchor tag can be used to “jump” to a specific point or paragraph on a webpage. This is especially useful with large webpages or subdivisions.
Name
Href
Link
Title
.............. is attribute of anchor tag that provide text that will be displayed when the user mouse over a link
Title
href
alt
link
Which is given below is not an attribute of Anchor tag ?
href
title
name
link
Which special character used in name attribute of Anchor tag ?
#
@
$
Which is correct coding statement ?
<a href="#Internet">Internet </a>
<a href="@Internet">Internet </a>
<a href="#Internet">Internet <a>
<a href="$Internet">Internet </a>
