How to Embed Your Weebly Folder
If you have previously created a website with Weebly, you can integrate some of your original content by embedding the pages hosted on Weebly into a new website. Weebly is a Web hosting platform that allows webmasters to create websites by using a drag-and-drop interface. You can embed pages which are in your Weebly folder by using the frames feature in HTML.
Instructions
-
-
1
Launch Notepad, the Windows text editor.
-
2
Type or copy and paste the following code into a blank document in Notepad:
<html><body><frameset cols="40%,60%">
<frame src="yourwebsite.html" />
<frame src="http://www.weebly.com/yoursite/index.html" />
</frameset></body></html>
This code creates a page that contains two elements: a page on your new site and one of your pages on Weebly. -
-
3
Replace "40%,60%" with the size you want to allocate to each of the pages. In this example, the page on your site uses 40 percent of the total screen width while the Weebly page uses 60 percent of it.
-
4
Replace "yourwebsite.html" with the name of the HTML file on your new website which you want to appear next to the Weebly page. This page can, for example, contain your new website's logo or a navigation menu.
-
5
Replace "http://www.weebly.com/yoursite/index.html" with the actual Uniform Resource Locator (URL) address of the page inside your Weebly folder which you want to embed.
-
6
Click on "File." Select "Save" and give a name to your file. Make sure to affix the ".html" extension at the end of the file name.
-
1