Friday, November 25, 2011

Embed audio,video to web pages

The HTML tag is used for embedding an external content into  HTML document.  element is an empty element.           (no closing tag is used).The tag was introduced in HTML 5.

[sourcecode language="html"]
<embed height="200" width="200" src="My song.avi" autostart="true" loop="false"></embed>
[/sourcecode]

No comments:

Post a Comment

How to enable CORS in Laravel 5

https://www.youtube.com/watch?v=PozYTvmgcVE 1. Add middleware php artisan make:middleware Cors return $next($request) ->header('Acces...