🚀 Hurry! Offer Ends In
00 Days
00 Hours
00 Mins
00 Secs
Enroll Now
X

HTML में किसी इमेज का आकार पिक्सल में कैसे सेट किया जा सकता है?

In HTML, how can you set the size of an image in pixels?

A
Using size attribute
B
Using pixel attribute
C
Using width and height attributes
D
Using img-size attribute
Explanation

In HTML, the size of an image in pixels can be set using the width and height attributes.
Example:

html
<img src="image.jpg" width="300" height="200">


HTML में इमेज का आकार पिक्सल में सेट करने के लिए width और height एट्रिब्यूट का उपयोग किया जाता है।
उदाहरण:

html
<img src="image.jpg" width="300" height="200">

Correct Answer: C) Using width and height attributes

Latest Updates