Write all the steps to resize the pictures/images in an HTML document
11 Likes
To resize the pictures/images in an HTML document, we can use the attributes 'Height' and 'Width' with <img> tag.
<img>
Syntax:
<img src = "URL/Path" Height = "height in pixels" Width = "width in pixels">
Example:
<img src = "d:/images/computer.jpg" Height = "300" Width = "400">
Answered By
6 Likes
How will you set right direction of Marquee tag in an HTML document?
Write all the steps to insert pictures in an HTML document
Write all the steps to add borders to pictures in an HTML document
Write all the steps to add space around pictures/images in an HTML document