Sunday, 12 May 2019

Width and Height Attributes

Images in HTML have a set of size attributes, which specifies the width and height of the image:

<!DOCTYPE html>
<html>
<body>

<h2>Size Attributes</h2>
<p>Images in HTML have a set of size attributes, which specifies the width and height of the image:</p>

<img src="img_girl.jpg" width="500" height="600">

</body>

</html>

No comments:

Post a Comment