<!DOCTYPE html>

<html lang="de">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Bildanzeige</title>

    <style>

        body {

            margin: 0;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            background-color: #f0f0f0;

        }

        img {

            max-width: 100%;

            max-height: 100%;

        }

    </style>

</head>

<body>

    <img src=„RIP.jpg" alt=„rip“>

</body>

</html>