xxxxxxxxxx
<html lang="en">
<head>
<title>Setting Image Width and Height Using style Attribute in HTML</title>
</head>
<body>
<img src="/examples/images/kites.jpg" alt="Flying Kites" style="width: 300px; height: 300px;">
<img src="/examples/images/sky.jpg" alt="Cloudy Sky" style="width: 250px; height: 150px;">
<img src="/examples/images/balloons.jpg" alt="Hot Air Balloons" style="width: 200px; height: 200px;">
</body>
</html>