CBSE Class 10 Computer Applications Question 24 of 31

Solved Sample Paper 1 — Question 2

Back to all questions
2
Question

Question 21

Write the HTML code to generate the following web page.

Write the HTML code to generate the web page. Computer Applications Code 165 Sample Paper Solved CBSE Class 10.
Answer
<HTML>
<HEAD>
<TITLE> Books </TITLE>
</HEAD>
<BODY>
<P>REALLY HONEST </P>
<CENTER> BOOK REVIEWS </CENTER>
<P>
I read a lot of books about many different subjects, here is a list of books that I have read recently.
</P>
<UL TYPE = "square">
<LI> Java Concept </LI>
<LI> Python Programming </LI>
<LI> C++ Basics </LI>
</UL>
</BODY>
</HTML>