programming-examples/html/_Basics/Setting width and height of the images.html
2019-11-15 12:59:38 +01:00

14 lines
474 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<meta charset="UTF-8">
<title>Example of Setting Dimensions for Images</title>
</head>
<body>
<div>
<img src="../images/kites.jpg" alt="Flying Kites" width="300" height="300">
<img src="../images/sky.jpg" alt="Cloudy Sky" width="250" height="150">
<img src="../images/balloons.jpg" alt="Hot Air Balloons" width="200" height="200">
</div>
</body>
</html>