<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Zoom Gambar saat Hover</title>
<style>
.zoom-container {
width: 300px;
height: auto;
overflow: hidden;
}
.zoom-container img {
width: 100%;
transition: transform 0.3s ease;
transform-origin: center center;
cursor: pointer;
}
.zoom-container:hover img {
transform: scale(1.5);
}
</style>
</head>
<body>
<div class="zoom-container">
<img src="https://sdnegeri5wonosobo.wonosobokab.go.id/show-picture?path=gallery%2F691eb2a298a44_Green%20Simple%20SMART%20Goals%20Business%20Poster.png" alt="Poster SMART Goals">
</div>
</body>
</html>