programming-examples/html/Basics/Inserting video in HTML documents using the embed element.html

11 lines
469 B
HTML
Raw Normal View History

2019-11-18 14:44:36 +01:00
<!DOCTYPE html>
<html subLang="en">
<head>
<meta charset="UTF-8">
<title>Example of Embedding a YouTube Video</title>
</head>
<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>