programming-examples/html/Basics/Setting width and height of the images.html

14 lines
474 B
HTML
Raw Normal View History

2019-11-18 14:44:36 +01:00
<!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>