Adding IFrames to your Sites HTML
Adding IFrames to your Websites with HTML
IFrames are a great way to add content to your websites.
An IFrame allows you to embed a website to your site in a window box.
Here is an example of an IFrame
The code for this is quick and easy all you need is the link to the sight you want to embed.
HTML
<!DOCTYPE html>
<html>
<body>
<iframe width = 500 height = 500 src = "https://bobbiegames.blogspot.com"></iframe>
</body>
</html>
</html>
Comments
Post a Comment