Example of Embedding a YouTube Video - HTML CSS HTML

HTML CSS examples for HTML:Video

Description

Example of Embedding a YouTube Video

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>Example of Embedding a YouTube Video</title> 
 </head> <!--from  w w  w.  jav  a2s . co m-->
 <body> 
  <iframe width="560" height="315" src="//www.youtube.com/embed/YE7VzlLtp-4" frameborder="0" allowfullscreen></iframe> 
  <p>Source: <a href="http://www.youtube.com/watch?v=YE7VzlLtp-4" target="_blank" rel="nofollow">http://www.youtube.com/watch?v=YE7VzlLtp-4</a></p>   
 </body>
</html>

Related Tutorials