Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Selected Reading
Should I use , , or for SVG files?
To add SVG files, you can use
element
Use the tag for images without interaction.

The disadvantage is you cannot manipulate images with JavaScript.
<img src = "new.svg" alt = "craft" height = "100px" width = "100px" />
The
<object type = "image/svg+xml" data = "new.svg"> Your browser does not support SVG </object>
The
<embed type = "image/svg+xml" src = "image.svg" />
Advertisements
