Html Course


The <iframe> and <object> tags can be used to embed another document within the current page.

HTML iframe tag

The <iframe> is used to add and display the content of another document, or webpage within the current HTML document.
- Example:

<h4>Example iframe</h4>
<p>The following content is into an IFRAME element.</p>

<iframe width='400' height='300' src='https://coursesweb.net/'></iframe>

Attributes of <iframe>

The following attributes can be used in the <iframe> tag:


- Example, <iframe> with 'srcdoc'.
<h4>Example iframe with srcdoc</h4>
<p>The following content is into an IFRAME element with srcdoc attribute, which replaces the content from the 'src' address.</p>

<iframe width='400' height='300' src='https://coursesweb.net/' srcdoc='<h3>Content from srcdoc</h3>'></iframe>

The <iframe> positioning and style is made with CSS properties, via the 'id', 'class' or 'style' attributes.


HTML object tag

The <object> tag is used for embedding media contents on a web page (images, Java applets, Flash, PDF, movie, or even another HTML file).
This element is designed to include any sort of document. It uses the type attribute to indicate the 'mime type', and the data attribute to indicate the source of the document (its URI).

- Example, adds a SWF flash game in HTML document.

<h4>Example HTML object element</h4>
<p>In the OBJECT tag of this HTML document it is added a SWF file (a game).</p>

<object width='550' height='400' data='html/cubilus.swf' type='application/x-shockwave-flash'></object>

Attributes of <object>

In <object> you can add the following attributes:


- Example, shows a PDF document in HTML page:
<h4>Example PDF in HTML object</h4>
<p>In the OBJECT tag of this HTML document it is added a PDF file.</p>

<object type='application/pdf' data='blog/101_zen_stories.pdf' width='400' height='280'>PDF Document.</object>

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which meta tag provides a short description of the page?
<meta content="..."> <meta description="..."> <meta http-equiv="...">
<meta name="description" content="70-160 characters that describes the content of the page" />
Which CSS property is used to stop the wrapping effect of the "float"?
clear text-align position
#some_id {
  clear: both;
}
Click on the method which gets an array with all the elements in the document that have a specified tag name.
getElementsByName() getElementById() getElementsByTagName()
var divs = document.getElementsByTagName("div");
var nr_divs = divs.length;
alert(nr_divs);
Indicate the PHP function which returns the number of elements in array.
is_[) count() strlen()
$arr =[7, 8, "abc", 10);
$nri = count($arr);
echo $nri;        // 4
iframe and object tags

Last accessed pages

  1. CSS Trapezoid Shape (11313)
  2. Get Attribute (ID, Class, Name, Title, Src) with jQuery (74439)
  3. Node.js Move and Copy file (28290)
  4. AJAX with POST and PHP (18849)
  5. JQZoom Image Magnifier (12975)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (201)
  2. Read Excel file data in PHP - PhpExcelReader (66)
  3. The Mastery of Love (56)
  4. PHP Unzipper - Extract Zip, Rar Archives (51)
  5. Working with MySQL Database (34)
Chat
Chat or leave a message for the other users
Full screenInchide