125 solutions available
Question 1Consider the following web page:(a) The text at P is :the title of a book on tennisa different web pageanother websitea web address(b) The...
Question 2(a)Write the HTML code to do the following :To display a horizontal line of green colour.
Question 2(b)Write the HTML code to do the following :To create a hyperlink on the word CLICK to an image named testimage.jpeg.
Question 3Write output of the following HTML code.<html> <head> <title> Table </title> </head> <body> <table...
Question 4Observe the following table and write the HTML code to generate it :
Question 5(a)Write HTML code to create tables as shown below :
Question 5(b)Write HTML code to create tables as shown below :
Question 5(c)Write HTML code to create tables as shown below :
Question 5(d)Write HTML code to create tables as shown below :
Question 1To jump to new page, we use<IMG> tag<A> tag<JUMP> tagnone of the above
Question 2Which of the following is not a valid value for align attribute of <IMG> ?topmiddlebottomcenter
Question 3If the image you are loading in the web page is not available, then you want a text to appear in the image place holder, which attribute...
Question 4For linking to another web page, its URL is specified with ............... attribute of <A> tag.hreftitlenamenone of the above
Question 5For internal linking, the section names are provided by ............... attribute of <A> tag ?hreftitlenamenone of the above
Question 6............... attribute is used to specify the location of an image file.altsrcalignname
Question 7The ............... attribute of <img> tag specifies an alternate text for an image, if the image cannot be displayed due to any...
Question 8The default alignment of images, that are inserted in the web page, is ............... .leftrightmiddleinline with text
Question 9While creating a Web document, which unit is used to express an image's height and width ?CentimetresPixelsDots per inchInches
Question 10The default alignment of images, that are inserted in Web page, is :LeftRightInline with textMiddle
Question 11Border, frame, cellspacing, cellpadding, align are the attributes of :<BODY><IMG><TABLE>None of these
Question 12To create a link you surround the text or image with a(n) ............... tag.linkanchorreferencetarget
Question 13The correct HTML code for inserting an image is :<img href ="image.gif"><img> image.gif </gif><image src =...
Question 14Which will let text wrap down the side of the image?<img src="myImage.gif" align="wrap"><img src="myImage.gif"...
Question 15Consider the following code :<img src ="Computers.jpg" width ="...." height ="....">Fill in the blanks to set the image size to be...
Question 16The correct HTML code to display (P + Q)2 is:<SUB> ( P+) 2 </SUB>P+Q <SUP> 2 </SUP>(P + Q) <SUP> 2...
Question 17The < ............... > tag displays text in subscript form.subsupsupssubs
Question 18The tag that starts a table cell is ............... .<table><tc><td><tr>
Question 19What tag is used to add columns to tables ?<colspan><td><tr>
Question 20Which has higher priority, cell settings or table settings ?NeitherCell settingsTable settings
Question 21Choose the correct HTML to left-align the content inside a table cell.<td valign="left"><tdleft><td align="left"><td...
Question 22Which of these tags are all <table> tags...
Question 23Settings for columns(<td> tag) have higher priority than settings for rows(<tr> tag).Sometimes true, sometimes notTrueFalse
Question 24Which property tells how many rows a cell should span ?colspan = nBoth rowspan = n and colspan = nrowspan = n
Question 25What is required to create a reference to a remote site that is different from creating a local link ?The remote attributeA link titleThe...
Question 26Which one of the following is the list type that will create a bulleted list ?unorderedoptiondecoratedordered
Question 27Why is it important to specify an image width and height in an <img> tag ?It ensures that a user will not be able to copy the image...
Question 28Which one of the following HTML tags is surrounded by <a></a> container tags to create an image link...
Question 29What is the general syntax for inline image ?<src = img><src = image><img = file><img src = file><image src =...
Question 30To create a link to an anchor, you use the ............... property in A tag.NameTagLinkHref
Question 31Which of the following is used to specify the beginning of a table's row ?TROWTABLERTRROW
Question 32In order to add border to a table, BORDER attribute is specified in which tag ?THEADTABLETBORDERnone of these
Question 33Which of the following is an attribute of <Table> tag ?SRCLINKCELLPADDINGBOLD
Question 34What is the correct syntax in HTML for creating a link on a webpage ?<LINK SRC = "abc.html"><BODY LINK = "abc.html"><A SRC...
Question 35Choose the correct HTML code to create an email link ?<A HREF = "xx@yy.com"></A><A HREF =...
Question 36............... attribute is used with <A> tag to specify the URL of link.
Question 37No value is specified with ALT attribute of <IMG> tag. (T/F)
Question 38ROWSPAN with <TABLE> tag is used to merge more than one cell row wise. (T/F)
Question 39Target attribute with <A> tag is used to open a link in a new window. (T/F)
Question 40Align and Valign are the attributes used with <TD> tag to set the alignment of data in a table. (T/F)
Question 41BORDER is an attribute of <A> tag. (T/F)
Question 1How to create hyperlinks.<HTML> <BODY> <P> <A href = "lastpage.htm">This text</A> is a link to a page on...
Question 2Jump to another part of same document.<HTML> <BODY> <P> <A href = "#C4"> See also Chapter 4. </A> </P>...
Question 3Create a basic 3x2 table.<HTML> <BODY> <TABLE BORDER> <TR> <TD>A</TD> <TD>B</TD>...
Question 4Demonstration of rowspan.<HTML> <BODY> <TABLE BORDER> <TR> <TD ROWSPAN=2>Item 1</TD> <TD>Item...
Question 5Demonstration of colspan and headers.<HTML> <BODY> <TABLE BORDER> <TR> <TH COLSPAN=2>Head1</TH> <TH...
Question 6Demonstration of Side Headers, Rowspan.<HTML> <BODY> <TABLE BORDER> <TR><TH ROWSPAN=2>Head1</TH>...
Question 7Sample table using many things.<HTML> <BODY> <TABLE BORDER> <TR> <TD><TH ROWSPAN=2></TH> <TH...
Question 8Tables using Cellpadding and Cellspacing.<HTML> <BODY> <TABLE BORDER CELLPADDING=10 CELLSPACING=0> <TR>...
Question 9Table with different vertical alignments in its cells.<HTML> <BODY> <TABLE BORDER> <TR>...
Question 1Fill in the blanks:(i) To insert a table on a web page, we use ............... tag.(ii) ............... tag is used to create inline...
Question 2State True or False:(i) Line breaks are given through <BR>.(ii) HTML is a programming language.(iii) The default font size is 5.(iv)...
Question 3(i)To create a link, we must use ............... attribute with tag.namelinktaghref
Question 3(ii)Which of the following is an attribute of <table> tag ?srclinkcellpaddingbold
Question 3(iii)Which attribute is not valid for <body> tag ?backgroundcolorvlinkleftmargin
Question 3(iv)Which of the following is not an attribute of <Table> tag ?BorderBackgroundBgcolorSrc
Question 3(v)Which command should we use to link a page with an HTML page ?<a link = "page.htm"> </a><a href = "page.htm"> page...
Question 3(vi)SRC attribute used with <IMG> tag stands for :ScreenScreen resolution countSourceStructure
Question 3(vii)Which of the following is not a valid value for align attribute of <IMG> tag ?topcenterbottommiddle
Question 3(viii)We can create a numbered list using ............... tag.<ul><list><ol><dl>
Question 3(ix)colspan = n can be added to ............... tag :<hr><table><td><tr>
Question 3(x)The correct HTML code for inserting an image is :<img href = "image.gif"><img> image.gif </img><img src =...
Question 3(xi)Which of the following are the attributes of <table> ?<Border><img><table>None of these
Question 3(xii)The attribute used to specify the background colour of a table is :COLORBGTABLEBACKCOLORBGCOLOR
Question 3(xiii)Which of the following is an attribute of <TABLE> tag ?SRCLINKCELLPADDINGBOLD
Question 3(xiv)Which of the following tag is suitable for creating numbered list ?<BL><OL><UL><DL>
Question 3(xv)The two common attributes of the <IMG> and the <TABLE> tag are :SRC and HEIGHTHEIGHT and WIDTHBORDER and SRCThey do not...
Question 4(a)Write the full forms of :(i) XML(ii) FTP(iii) <img>(iv) <HR>
Question 4(b)Name the attributes of <img> tag which are used for specifying its dimensions in a web page.
Question 5What do you understand by VLINK ?
Question 6Identify which of the following is a tag or an attribute :(i) border(ii) img(iii) alt(iv) src(v) href
Question 7Consider the HTML code :<A HREF = #intro> Introduction </A>In the above code,(i) What is the purpose of # ?(ii) What will...
Question 8(a)Observe the following table and write the HTML code to generate it :
Question 8(b)Write the names of two attributes each for the following tags :(i) <HR>(ii) <Body>(iii) <img>(iv) <Table>(v)...
Question 9Observe the following table and write the HTML code to generate it :Note. 1st row has pink background.
Question 10Write the HTML code to generate the following output :Note the following points while generating the webpage :(i) Link colour is green,...
Question 11Write the HTML code to generate the following output :Note the following points while generating the webpage :(i) Title of the page should...
Question 1What is meant by inline images in HTML ?
Question 2Name various types of alignments available for images.
Question 3Which attributes of <A> facilitates external linking ?
Question 4Which attribute of <A> facilitates internal linking ?
Question 5What for is Mailto function used ?
Question 6Write HTML code to create the following ordered list : X. Xylophone Y. Yak Z. Zebra
Question 7How would you indent a single word and put a square bullet in front of it ?
Question 8Write the HTML code to create the following indentation effect :Apple pie, pudding, and pancake, All begin with an A.
Question 9Use a definition list in a table to show that the word "glunch" means "a look of disdain, anger, or displeasure" and that the word "glumpy"...
Question 10How would you make the word Elephant appear whenever the actual elephant.jpg image couldn't be displayed by a Web browser ?
Question 11Write the HTML to make the elephant.jpg image appear on the right side of the page, with a big headline reading "Elephants of the World...
Question 12How would you insert an image file named elephant.jpg at the very top of a Web page ?
Question 13Suppose you have a large picture of a standing elephant named elephant.jpg. Now make a small named fly.jpg appear to the left of the...
Question 14Your home page will be at http://www.mysite.com/home.htm when you put it on the Internet. Write the HTML code to go on that page so that...
Question 15You plan to publish a CD-ROM disk containing HTML pages. How do you create a link from a page in the \guide folder to the \ guide \ mains...
Question 16Name the following with respect to HTML :Element to create a hyperlink.
Question 17What is a table ? Which tag is used to create tables in HTML ?
Question 18Which attributes are used to give border to a table ?
Question 19Which attribute lets you control the display of select border sides of a table ?
Question 20Which attribute is used to control the inside table border ?
Question 21How is spacing in cells of table controlled ?
Question 22What is the role of ALIGN attribute of <TABLE> tag ?
Question 23What is the use of having a SUMMARY attribute in <TABLE> tag ?
Question 24How can you specify following in a table :(i) background image(ii) background colour(iii) table height(iv) table width ?
Question 25Which tag is used to specify(i) table data ?(ii) table header ?(iii) table row ?
Question 26Name the attributes used for following :(i) Setting the cell width(ii) Setting cell's background image(iii) Setting cell's background...
Question 27What for are <TH> and <TR> tags used ?
Question 28A set of header rows is defined using ............... tag.
Question 29Which tags divide HTML tables in multiple sections ?
Question 30What attributes can you use with TABLE tag but not with TR tag ?
Question 31Can you insert hyperlinks inside table cells ?
Question 32How do you create different table section ?
Question 33Write code to produce following HTML table :
Question 34Write HTML code to produce following table :
Question 35Write HTML code to produce following table :
Question 36Write HTML code to produce following table :
Question 37Create a table having three header rows with yellow background colour, five table-body rows having pink colour and two footer rows having...
Question 38Write code to produce following HTML tables :
Question 39Write code to produce following HTML table :