The valid attribute of <A> tag is (1M)
a) NAME
b) SRC
c) BGCOLOR
d) HEIGHT
Give function of following tags with example of each (3M)
a) <IMG>
b) <EM>
c) <DL>
Write output of the following program (5M)
<html>
<head><title>abc</title></head>
<body>
<h1 align=”center”>Vinit’ s Restaurant</h1>
<table border=”2″>
<tr>
<th rowspan=”2″><font size=”5″>Pawbhaji</th>
<th> with cheese </th>
<th> 55</th>
<tr>
<tr>
<th> without cheese </th>
<th> 35 </th>
</tr>
</table>
</body>
</html>
Write a program in HTML for the following output (5M)
(i) Arts
A. History
b. Geography
(ii) Science
I. Science
II. Physics
(iii) Commerce
0 English
0 Accounts
Border attribute is used in which tag of HTML (1M)
a) <PRE>
b) <ADDRESS>
c) <TABLE>
d) <CAPTION>
Explain any three of tags of HTMK which do not have ending tags. (3)
Write a html tag for the following
Write HTML code for the following output (5M)
Which tag is used to put line break in HTML code? (1M)
a) <HR>
b) <BR>
c) <P>
d) <LI>
With syntax diagram explain the structure of webpage (3M)
Write code of the foloowing output (5M)
Write the exact output of the following HTML Code with font specification in backet. (5M)
<html>
<title> Introduction </title>
<body>
<h1> <b> Computer Science </b> </h1>
<hr>
<u> Paper-I </u>
<hr>
<u> Paper-II </u>
</body>
</html>
In HTML, for Red colour, RGB code is (1M)
a) # 00 00 00
b) # ff 00 00
c) # 00 ff 00
d) # 00 00 ff
Explain <OL> and <UL> used in html with example (3M)
Write the output of the following HTML code : (5M)
<html>
<body>
<UL type = “circle”>
<li> One
<li> Two
<li> Three
<UL type = “square”>
<li> Monday
<li> Tuesday
<li> Wednesday
</UL>
</UL>
</body>
</html>
Write code of the following output (5M)
Write advantages and disadvantages of HTML. (3M)
Write exact output of following HTML Code: (5M)
<HTML>
<OL start = 10>
<Li> English</LI>
<Li> Second language</li></Ol>
<OL Type = a>
<li> Compulsory</li>
<li> Optional</li>
</ol>
<UL Type = “Square”>
<Li> Science</li>
<Li> Arts</li>
<li> Commerce</li>
</ul>
</BODY></HTML>
Bulleted list in HTML is created by tag. (1M)
a) <UL>
b) <OL>
c) <B>
d)<BR>
tag is used to create a row in table. (1M>
a)<td>
b) <th>
c) <tr>
d) <tt>
Write the exact output of the following HTML code with font specification. (5M)
<HTML><BODY>
<TABLE border= “3” Cellspacing=”10″>
<TR><TH colspan = “3” > STREAM </TH></TR>
<TR><TD> <A href= “Science.html” > SCIENCE </A> </TD>
<TD> <A href= “Commerce.html” > COMMERCE </A> </TD>
<TD> <A href= “Arts.html” > ARTS </A> </TD>
</TR>
</TABLE></BODY></HTML>