css - Video Inserted to HTML web page -


i'm new html , i'm building site based on template. i'm trying insert video when paste url of video(youtube, save , refresh, page's field in video should blank white , if right click says "video not loaded". html code video is:

<object class="alignimages" type="application/x-shockwave-flash" style="width:420px; height:315px;" data="https://www.youtube.com/watch?v=-y8qxojuyhg">         <param name="movie" value="https://www.youtube.com/watch?v=-y8qxojuyhg" />         <param name="allowfullscreen" value="true" />         <param name="allowscriptaccess" value="always" /> 

i have tried other things too, without success. ideas?

the easiest way add youtube video site implement iframe element. when looking @ video, click "share", "embed" , copy/paste code html file

also, remember close tags.

<object>     ... </object> 

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -