Untitled

                Never    
HTML
       
<!DOCTYPE html>
<html lang="pl">

<head>
    <meta charset="UTF-8">
    <title>scroll</title>
    <style type="text/css">
        * {
            margin: 0;
            padding: 0;
        }

        .bg1 {
            height: 100vh;
            background-image: url('https://htmlcolorcodes.com/assets/images/html-color-codes-color-tutorials-hero-00e10b1f.jpg');
            background-size: cover;
            background-attachment: fixed;
        }

        .bg2 {
            height: 100vh;
            background-color: darkgoldenrod;

        }

    </style>
</head>

<body>
    <div class="bg1"></div>

    <div class="bg2">
        <p>tekst</p>
    </div>
</body>

</html>

Raw Text