Embeded a YouTube video in HTML with following processes -
1)-Upload the video in YouTube which you want to be shown on a web page.
2)-Define an <iframe> element in your web page.
Example
<!Doctype Html>
<Html>
<Head>
<Title>
Embed a Youtube video
</Title>
</Head>
<Body>
<iframe height="400" width="300"
src="URL of Youtube video">
</iframe>
</Body>
</Html>
Copyright ©2022 coderraj.com. All Rights Reserved.