Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (398)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Use SVG Images in EMBED Tags
How to Use SVG Images in HTML <embed> Tags?
✍: FYIcenter.com
If you want to use SVG images in HTML <embed> Tags, you can save SVG images in .svg files and include SVG image file names in the "src" attribute of <embed> Tags. You also need to specify the type="image/svg+xml" attribute in <embed> Tags.
You can follow this tutorial to test this.
1. Save the following SVG image in a file called, circle.svg:
<svg xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="50"/> </svg>
2. Save the following HTML document in another file called, embed.html:
<html><body> <p>Black <embed src="/circle.svg" type="image/svg+xml"/> Circle... </p> </body></html>
When you open the above HTML file, embed.html, in a Web browser, you see a black circle inserted inside a text line.
Similar to square.html in the previous tutorial, extra white spaces are padded below and after image. The the 100px x 100px circle occupied an area of 300px x 150px.
See next tutorial on how to remove padded space around the SVG image.
Also note that, EMBED tag is deprecated now. You should use OBJECT tag instead.
⇒ Use SVG Images in IFRAME Tags
⇐ Use SVG Images in OBJECT Tags
2022-12-03, 485🔥, 0💬
Popular Posts:
How to use MomoCast with Safari on iPhone and iPad to cast Website and video to Chromecast on TV? If...
What port numbers are used for data connections in passive mode in FileZilla Server? Can I limit the...
What is "OneNote Linked Notes Add-in" in Microsoft Word? Should I disable it? "OneNote Linked Notes ...
How to create a new PowerPoint Template? I have created a slide master and some useful slide layouts...
Why I am getting an error message dialog box when I try to save my PowerPoint presentation with some...