<!DOCTYPE html>
<html>
<body>
<h1>Basic embed element examples</h1>
<p>The following is an embedded imgsrc:</p>
<embed
type="image/jpg"
title="storm"
src="https://res.cloudinary.com/thewebmaster/image/upload/ar_16:10,c_fill,f_auto,g_auto,q_auto,w_300/image/google-update-march-2017.jpg"
width="300"
height="188"
/>
<p>The following is an embedded web page:</p>
<embed
type="text/html"
title="The Webmaster"
src="https://www.thewebmaster.com/"
width="500"
height="200"
/>
<p>The following is an embedded video file:</p>
<embed
type="video/webm"
src="https://file-examples-com.github.io/uploads/2020/03/file_example_WEBM_1920_3_7MB.webm"
width="250"
height="200"
title="The Earth"
/>
</body>
</html>