How to embed in HTML

Different ways to embed on a website.

Embed an image:

<embed type="image/jpg" src="filename" width="" height="">

Embed an HTML page:

<embed type="text/html" src="URL" width="" height="">

Using an iframe to embed:

<iframe src="URL" width="" height=""></iframe>

Last updated