<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Responsive SVG Images</title>

        <style>
            .img-container {
                width: 50%;
            }
        </style>

    </head>
    <body>

        <div class="img-container">
            <img src="whale.svg" alt="whale">
        </div>

    </body>
</html>