Computer Science, asked by manjirisharma2804, 6 months ago

Suppose you have a large picture of a standing elephant named elephant.jpg now make a small named fly.jpg appear to the left of the elephant's head and mouse.jpg appear next to the elephant's right foot...
Give the HTML coding for this question....
If u answer correctly I will mark u the brainliest...​

Answers

Answered by Anonymous
8

<html>

<head>

JPG Files

</head>

<title>

Pictures

</title>

<body>

<img src="pic_elephant.jpg" alt="Elephant" class="center">

<div class="right">

 <p><img src="pic_mouse.jpg" alt="mouse"></p>

</div>

<div class="left">

 <p><img src="pic_fly.jpg" alt="fly"></p>

</div>

Similar questions