Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
iframeExample.html 371 B
<!DOCTYPE html>
<html>
    <head>
        <style>
            p{
                color: rgb(20,40,100, .5);
            }
            
            </style>

    </head>
<body>

<h2>iframe Example</h2>
<p>Can display just about anything in the frame, you have control over sizing</p>

<iframe src="https://www.cnn.com/" height="200" width="300"></iframe>

</body>
</html>