WordPress Tricks

Show Another Website or Webpage in any of your HTML or WordPress Page without Iframe

website masking show a page into another webpage without iframe

Recently one of my client asked me to do the following
1. Client created a Webinar (thirdparty) and wanted to show that while going to his Website.
2. He requested to show that Webinar without Redirecting to that site but creating Mask
3. Below is the code which can be used to show any thirdparty Webinar or other pages in your own page.
4. Iframe is not used, Frameset is used

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Your Title </title>
</head>
 <frameset rows="100%,*" border="0">
<frame src="THE WEBPAGE URL YOU WANT TO SHOW" frameborder="0" />
<frame frameborder="0" noresize />
</frameset> 
</html>

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s