Example

Embed in HTML

HTML

<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en-us">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width" />
    <title>Embed in HTML</title>
  </head>
  <body>
<!--
    <embed> : embeds external content at specified point in the document
-->

    <h1>Demo: Embed in HTML</h1>

    <embed type="video/mp4" src="/notes/examples/assets/videos/skillzam.mp4" width="250" height="200" />
    <br>        
    <embed type="image/png" src="/notes/examples/assets/img/skillzam.png" width="25%" />

  </body>
</html>
          

Output

View original