How do you force an image size in HTML?

  • Thread starter Thread starter debra_dragon
  • Start date Start date
D

debra_dragon

Guest
NOT using CSS, but HTML, i.e. something I can put inside my HTML code to make all the images 200px x 200px or the like. I don't care if I have to individually copy and paste the same code to get them to apply to all the images, I just wanna know if it can be done and if so, how it can be done.
 
so It can be done you do something like <img(then the image) then do H=(then number) then W=(number) and something to that extent. You can type in on google HTML codes and maybe find it there.
 
Personally I'm glad you aren't using CSS. It provides job security to professional web developers..

You know you can within your image tag you can do inline css such as style="height:200px; width:200px" ?
 
Back
Top