HTML - 09: INCLUDING YOUTUBE VIDEO

 IN THIS TUTORIAL, WE WILL BE LEARNING ABOUT INCLUDING YOUTUBE VIDEO:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>SHAYAN'S WEBSITE</title>
</head>
<body>
    <iframe width="560" height="315" src="https://www.youtube.com/embed/VzLvHujHSYg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</body>
</html>

Comments