90 likes | 167 Views
With HTML you can create your own Website. This tutorial teaches you everything about HTML. For full HTML course visit our website www.training-n-development.com
E N D
Learn HTML BasicsLesson No : 08 Publisher : Attitude Academy
HTML iframe Tag Iframe Syntax The syntax for adding an iframe is: <iframe src="URL"></iframe> The src attribute specifies the URL (web address) of the iframe page.
Iframe - Set Height and Width Use the height and width attributes to specify the size. The attribute values are specified in pixels by default, but they can also be in percent (like "80%"). <body> <iframe src="ani.gif" width="200" height="200"></iframe> </body>
Use iframe as a Target for a Link An iframe can be used as the target frame for a link. The target attribute of the link must refer to the name attribute of the iframe: <body> <iframe width="100%" height="150px" src="ani.gif" name="iframe_a"></iframe> <p><a href="url(path of file)" target="iframe_a">HTML</a></p> <p>When the target of a link matches the name of an iframe, the link will open in the iframe.</p> </body>
HTML Entities Some characters are reserved in HTML. If you use the less than (<) or greater than (>) signs in your text, the browser might mix them with tags. Character entities are used to display reserved characters in HTML. A character entity looks like this: &entity_name; OR &#entity_number; To display a less than sign we must write: < or <
PRACTICAL IMPLEMENTATION