embed tag in html
Lab # 1
Introduction to html & CSS

2. Write HTML code to attach video on webpage using embed tag in html.
Lab1-2-Embed-tag.html
<html>
<head>
    <title>Lab 1-2</title>
</head>
<body>
    <h4>Following video add using Embed tag</h4>
    <embed src="https://www.youtube.com/embed/F9Bo89m2f6g" allowfullscreen="true"  
        width="425" height="344">
</body>
</html>

Output


Happy Coding
embed tag in html
Video add using embed tag by practical server