Computer Applications
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 Advanced Features
12 Likes
Answer
<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>
Answered By
9 Likes
Related Questions
Karan has recently started working as a content writer. Suggest the steps he can take to avoid plagiarism.
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: Heading of the web page should be "Project Tiger". The links in the page should be green, active links should be pink, and visited links should be orange.
Specification 2: The image "tiger.jpg" is to be inserted below the heading.
Specification 3: The table consists of 6 rows and 2 columns and has border size as 2.
Specification 4: The column heading "Success of the Project Tiger Mission" occupies two columns.
Specification 5: In the last line, "Join the mission!" should be a link to the website "projectiger.com".
Case Study 1

Consider the following code created by Snehal for the given web page:
<html> <Head><Title> Form Elements<...............></Head> --- Statement 1 <............... bgcolor=" lightCyan "> --- Statement 2 <FORM> Login: <INPUT Type= "Text" Name= "Name" Size= 30 Value=""> Password: <INPUT Type= "..............." Name= "code" Size=30 Value=""> --- Statement 3 <P>Course interested in:</P> <INPUT Type="..............." Name= "HTML" Value= "HTML"/> HTML --- Statement 4a <INPUT Type="..............." Name= "PYTHON" Value= "PYTHON" >PYTHON --- Statement 4b <INPUT Type="..............." Name= "C++" Value= "C++" > --- Statement 4c </Form> <p> To upload your identity proof click <................>="www.kyc.com">KYC.com</a></p> - Statement 5 </body> </html>Based on the given information, answer the questions:
a. Write the tag to complete Statement 1.
b. Write the suitable option for the blank given in Statement 2.
c. Write the appropriate answer for the blank given in Statement 3, such that the input is masked while the user enters the form.
d. Write the appropriate answer for the blank given in Statement 4a, 4b, and 4c to display the input elements as shown in the web page.
e. Write the appropriate answer for the blank given in Statement 5 to show the link of the web page.
Case Study 2
Poonam placed an order for some branded shoes from a freshly launched online shopping site during a festival sale. After she received the product, she realised it was just a fake copy of the original brand. Poonam called up the helpline number of the online shopping site but was told that there is a no-returns policy for shoes. Poonam realises that she should have taken precautions before placing an order for a product online.
Based on the given information, answer the questions given below. Attempt any four questions.
a. Which type of cybercrime is Poonam a victim of?
b. Why is there an increase in online frauds?
c. State at least two precautions that Poonam should have taken to prevent the fraud.
d. Name any two types of frauds that take place while shopping online.
e. Mention any two ways to prevent frauds while shopping online.