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 tag can be used to create input text field in web page?
<form> <input> <div>
<input type="text" name="a_name" value="val" />
Which CSS property displays the text in a small-caps font?
display font-variant font-style
h3 {
  font-variant: small-caps;
}
What instruction displays a notice box with a message inside it, in JavaScript?
for() Date() alert()
var msg = "Visit CoursesWeb.net";
alert(msg);
Indicate the PHP code used to get the users IP.
$_SERVER["HTTP_USER_AGENT"] $_SERVER["REMOTE_ADDR"] $_GET[]
$ip = $_SERVER["REMOTE_ADDR"];
echo $ip;
iframe and object tags

Last accessed pages

  1. Get Duration of Audio /Video file before Upload (14302)
  2. Extract a number of characters and words from string (2995)
  3. Convert XML to JSON in PHP (11556)
  4. Insert, Select and Update NULL value in MySQL (57753)
  5. Diamond shape with CSS (3787)

Popular pages this month

  1. PHP Unzipper - Extract Zip, Rar Archives (805)
  2. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (565)
  3. SHA1 Encrypt data in JavaScript (431)
  4. Create simple Website with PHP (397)
  5. Read Excel file data in PHP - PhpExcelReader (389)