embed src Attribute - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:embed

Description

The src attribute specifies the address of the external file to embed.

Attribute Values

Value Description
URL Specifies the address of the external file to embed.

An embedded flash animation:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<embed src="helloworld.swf">

</body><!--  w ww  .  j a va  2  s  .co m-->
</html>

Related Tutorials