+ 2
Syntax of iframe & embed HTML tags
plz tell the syntax of embed & iframe tags . also how to resize the tags.
3 odpowiedzi
+ 1
If I understood your question correctly, the syntax of embed tag:
<embed type="video/quicktime" src="movie.mov" width="640" height="480">.
The syntax of iframe tag:
<iframe src="/default.asp" width="200" height="200">
</iframe>.
The height and width displaying in pixels.
+ 1
thanks, no embed end tag ??
can we use a URL in src ??
0
The closing tag is optional in «embed», you can use <embed> without it. And yes, you can use the URL in src.