html_notes3
html_notes3
Q8. Find the error in the following code and correct it.
I) <OL TYPE=” SQUARE”>
II) <UL TYPE=” BULLET”>
Ans)
a. <ol type=”A” start=”6”>
b. <ol type=”I”>
Q 10. Write an Html code to make a definition list for
hardware and software.
Ans 10.
<Html>
<Body>
<DL>
<DT> Hardware
<DD> All the physical parts of computer are referred to as
Hardware.
</DT>
<DT>Software
<DD>Collection of programs and instructions is called
Software.
</DT>
</DL>
</Body>
</Html>