HOW TO USE
- Select an image and click it to open a source code viewer.
- Click a download button on the source code viewer to download the image file.
- Place the downloaded image file on your web server.
- Load the placed image file in your web page like
<img src="placed.svg">
(In HTML),<object type="image/svg+xml" data="placed.svg"></object>
(In HTML),#foo { background-image: url("placed.svg"); }
(In CSS), etc.
You can also write the SVG source code directly into HTML as inline SVG.
IMPORTANT NOTE: Please do not load the image files directly from this website, as the URL may change.
CUSTOMIZE
Changing the SVG icon color
- Open the downloaded SVG file with a text editor and so on.
- Edit properties where explained by the comments in the file.
SUPPORTED BROWSER
The SVG images have been verified to be available in the latest Chrome, Firefox, and Safari.
SVG REFERENCES
- Scalable Vector Graphics (SVG) 1.1 (Second Edition) | W3C Recommendation
- SVG: Scalable Vector Graphics | MDN