Ram has designed a portal that fetches the citizens' feedback regarding the voting process in India. The portal allows the end user to choose either 'like' image or 'unlike' image, so that it gets redirected to a page : "thanks.html".
Answer options
Correct answer: <form action="thanks.html"> <input type="image" src="like.jpg" alt="submit"/> <input type="image" src="unlike.jpg" alt="submit"/> </form> // we are using input tag & not img bca we want to choose between 'like' and 'unlike' images & not only display them as pics
Explanation
Quick AnswerThe correct answer is <form action="thanks.html"> <input type="image" src="like.jpg" alt="submit"/> <input type="image" src="unlike.jpg" alt="submit"/> </form> // we are using input tag & not img bca we want to choose between 'like' and 'unlike' images & not only display them as pics because it directly addresses the core logic of Essentials.
The correct answer is: <form action="thanks.html"> <input type="image" src="like.jpg" alt="submit"/> <input type="image" ....