USING HTML EMBED TAG
Run
<!doctype html>
	<head>
		<title>Using Embed Tag</title>
	</head>
	<body>
		<p>Embed an image with <b>auto</b> width</p>
        <p><embed src="https://s3.ap-south-1.amazonaws.com/s3.studytonight.com/curious/uploads/pictures/1590854519-1.jpg" height="200px" width="auto"/></p>
        <p>Now let's embed a webpage:</p>
        <p><embed src="/profile?id=1" height="300px" width="300px"/></p>
	</body>
</html>