

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to add a container for an external (non-HTML) application in HTML5
Use the <embed> tag in HTML, represent a container for external application or interactive content. The HTML <embed> tag also supports the following additional attributes −
Attribute | Value | Description |
---|---|---|
height ![]() | pixels | Specifies the height. |
src ![]() | URL | Specifies the address of the source file. |
type ![]() | MIME_type | Specifies the MIME type |
width ![]() | pixels | Specifies the width. |
Example
You can try to run the following code to add a container for an external application in HTML5 −
<!DOCTYPE html> <html> <head> <title>HTML Embed Tag</title> </head> <body> <embed src = "/html/yourfile.mid" width = "300" height = "150" /> </body> </html>
- Related Questions & Answers
- How to run an external application through a C# application?
- How to add a parameter for an object in HTML?
- How to add an article in HTML5?
- How to add a unique id for an element in HTML?
- How to include an external JavaScript inside an HTML page?
- How to add manifest permission to an application in Android?
- How to add a spellchecker for text in HTML?
- How to programmatically add a UISegmentedControl to a container view?
- Add a heading container to Bootstrap panel
- How to use external “.js” files in an HTML file?
- Running Docker Container as a Non Root User
- Including an external stylesheet file in your HTML document
- How to add an address element in HTML?
- How to add an inline layer in HTML?
- How to add an unordered list in HTML?
Advertisements