Skip to content

Instantly share code, notes, and snippets.

@rafaelchagasb
Created April 17, 2012 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafaelchagasb/2408814 to your computer and use it in GitHub Desktop.
Save rafaelchagasb/2408814 to your computer and use it in GitHub Desktop.
Player de vídeo incorporado do Youtube
<html>
<head>
<title>Inserindo vídeos do YouTube em uma página HTML</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<p>Meu vídeo preferido</p>
<object style="height: 390px; width: 640px">
<param name="movie" value="http://www.youtube.com/v/IUsV--AhxrM?version=3&feature=player_detailpage">
<param name="allowFullScreen" value="true">
<param name="allowScriptAccess" value="always">
<embed src="http://www.youtube.com/v/IUsV--AhxrM?version=3&feature=player_detailpage" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="360">
</object>
<object style="height: 390px; width: 640px">
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment