CBSE Class 10 Computer Applications
Question 29 of 31
Sample Question Paper — Question 2
Back to all questions 2
Question Question 24(ii)
Write the HTML code to design the web page as shown below, considering the specifications that follow. You can write the code for any four specifications out of the given five.

Specification 1: The heading "Types of Artificial Intelligence" should be a third level heading and the background colour of the page should be aqua.
Specification 2: The page should consist of a list and data as shown in the image.
Specification 3: A video "AItypes.mp4" should be embedded below the list.
Specification 4: The video should have controls to enable the user to play it, manage the volume, etc.
Specification 5: The last line "Click the play button to view more information about Artificial Intelligence" should be inserted as a paragraph.
<HTML>
<HEAD>
<TITLE>
Types of Artificial Intelligence
</TITLE>
</HEAD>
<BODY BGCOLOR = "AQUA">
<H3> Types of Artificial Intelligence </H3>
<DL>
<DT> Artificial Narrow Intelligence </DT>
<DD> Artificial Narrow Intelligence (ANI) is an AI system that can perform narrowly defined specific tasks and thus has narrow capabilities. </DD>
<DT> Artificial General Intelligence (AGI)</DT>
<DD> AGI, also known as strong AI, can learn any intellectual task that a human can. </DD>
<DT> Artificial Super Intelligence (ASI)</DT>
<DD> Artificial Super Intelligence will surpass human intelligence and will be able to perform any task better than a human.</DD>
</DL>
<VIDEO Controls SRC = "AITypes.mp4"> </VIDEO>
<P> Click the play button to view more information about Artificial Intelligence </P>
</BODY>
</HTML>