Computer Science, asked by ally7041, 9 months ago

Ram designed a portal to get citizen feedback regarding the voting process in India.The end user should choose either like or unlike image,so that it should redirect to a page "thanks.html".

Answers

Answered by dhawaldhruv98
33

Answer:

<form action="thanks.html">

<input type="image" src="like.jpg" value="submit" />

<input type="image" src="unlike.jpg" value="submit" />

</form>

Explanation:

Answered by vishakasaxenasl
0

Answer:

The following HTML code will perform the desired function:

Explanation:

<!doctype html>

<html>

<head>

<title>Feedback on Voting Process</title>

</head>
<body>

<img src = "voting.jpg"/>

<form action = "thanks.html" method="post">

<label for="like">LIKE</label><br>

<input type = "radio" name = "feedback" value = "like"/>

<label for="unlike">UNLIKE</label><br>
<input type = "radio" name = "feedback" value = "unlike"/>

</form>
</body>
</html>

#SPJ3

Similar questions