Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Insert SVG Images in HTML Documents
How to Insert SVG Images in HTML Documents?
✍: FYIcenter.com
You can insert a SVG image in an HTML document by
inserting the SVG XML document directly any where
in the HTML document.
Here is a simple example of inserting a SVG XML document inside an HTML document. Save it in a file called, square.html.
<html><body> <p>Black <svg xmlns="http://www.w3.org/2000/svg"> <rect x="1" y="1" width="100" height="100"/> </svg> Square... </p> </body></html>
When you open the above HTML file, square.html, in a Web browser, you see a black square inserted inside a text line.
But some how extra white spaces are padded below and after image. The the 100px x 100px square occupied an area of 300px x 150px.
See next tutorial on how to remove padded space around the SVG image.
Also note that the namespace declaration xmlns="http://www.w3.org/2000/svg" is optional when inserting SVG document into an HTML document directly.
⇐ What Is SVG (Scalable Vector Graphics)
2022-10-25, 1102🔥, 0💬
Popular Posts:
How to add slide numbers and copyright in the footer area? You can add slide numbers, copyright text...
How to run Fitbit Connect for the first time and create a new account on Fitbit server? I have Fitbi...
What are URL:sfb and URL:lync15 Protocols? URL:sfb and URL:lync15 protocols are special network prot...
Why I am getting the "run or save ChromeSetup.exe" pop up box when trying to install Google Chrome 3...
How to unzip a Word Document .docx file? According to Microsoft documentation, a .docx file is reall...