<!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>