Inline Frames
In this lesson, we will study inline frames in HTML. Let's begin!
We'll cover the following...
In the previous Chapter, you used the <iframe>
tag to insert an inline video into a sample page. It’s pretty easy to insert an inline frame into your web page, but before doing so, there are a few things you need to think over, and most of them are security considerations.
You know that you can add JavaScript code to your page, which runs when a web page is loaded, or as you interact with the page. This code can do many things in your browser, in fact it can do everything that the browser’s current security configuration allows. If the inline page contains malicious code, that ...