Add an iframe of other website.
Sometimes you want to show some part of a websites.If the data on website is updated then it should also updated on your website.If you want such things here is your answer. follow the simple steps.
1) Go to Blogger Dashboard > Design > Page/Edit Layout.
2) Add a Gadget > HTML/JavaScript.
3) Copy the code below and paste it into the window.
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
#container{
width:340px;
height:1680px;
border:1px solid #000;
overflow:hidden;
margin:auto;
}
#container iframe {
width:900px;
height:7200px;
margin-left:10px;
margin-top:-160px;
border:0 solid;
}
-->
</style>
</head>
<body>
<div id="container">
<iframe src="website-url" scrolling="no"></iframe>
</div>
</body>
</html>
4) By changing the #container values you can customize the properties of main outer window.
5) Iframe which inside the main window can customize by changing the properties of '#container iframe'.
6) Replace website-url by the url of the website.
Note : Keeping iframe of other's website can be a matter of copyright. so be sure you have all permissions for putting the iframe of that website.
0 comments: