Posted by: Amit Nazare on: September 25, 2009
Iframes allow you to load separate html files into an existing document. You can place iframes anywhere in the document and can use CSS and JavaScript to manipulate the properties of the iframe. Example of iframe: <iframe scrolling=”no” width=”500″ height=”300″ src=”iframe-sample.html” frameborder=”0″> </iframe> Content of iframe-sample.html: Say below is the content <a href=”http://www.google.com” title=”Google” >Google</a> [...]
Posted by: Amit Nazare on: September 9, 2009
Whenever you are linking a document or an image in a web page, either you need to have an absolute path or its relative path to link it. Lets see about these two paths in detail. 1. Absolute Path Url: Absolute path is one which has the full url including the domain name, for example [...]