<!DOCTYPE html>
<html>
<head>
<style>
#img1 {
transform: scaleY(0.5);
}
#img2 {
transform: scaleY(70%);
}
#img3 {
transform: scaleY(-0.5);
}
#img4 {
transform: scaleY(1.1);
}
</style>
</head>
<body>
<h1>The scaleY() Function</h1>
<p>scaleY(0.5):</p>
<img id="img1" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<p>scaleY(70%):</p>
<img id="img2" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<p>scaleY(-0.5):</p>
<img id="img3" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<p>scaleY(1.1):</p>
<img id="img4" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<p>Original image:</p>
<img src="pineapple.jpg" alt="Pineapple" width="300" height="300">
</body>
</html>