SVG Export
en

Guide

How to Download an SVG from Any Website (3 Easy Ways)

Published June 17, 2026

Need to grab a crisp vector icon, a company logo, or an illustration from a site? SVGs are just code, which makes them easy to extract once you know where to look. Below are three ways to download an SVG from any website — from the fully manual approach to the one-click option.

Method 1: Use your browser’s developer tools

This works in Chrome, Firefox, and Edge with nothing installed.

  1. Right-click the icon or logo you want and choose Inspect.
  2. In the Elements panel, look for an <svg> tag (you may need to expand a parent element).
  3. Right-click the <svg> element and choose Edit as HTML (Chrome) or Copy → Outer HTML (Firefox).
  4. Paste the markup into a text editor and save the file with a .svg extension.

This is reliable but fiddly: the SVG may rely on styles defined elsewhere on the page, so it can look broken once it’s on its own. You also have to repeat the whole process for every icon.

Method 2: Find the SVG in the page source

Some SVGs are loaded as separate files rather than inlined.

  1. Open View Source or the Network tab in dev tools.
  2. Filter by .svg to find linked vector files.
  3. Open the file’s URL directly in a new tab and save it.

This only works for SVGs referenced as external files — it misses inline SVGs, which are extremely common.

Method 3: Use the SVG Export extension (the easy way)

If you’d rather skip the manual steps, SVG Export finds every SVG on the page for you:

The SVG Export extension listing every SVG on a page
Open SVG Export on any page to see every SVG, then download or convert the ones you need.

It’s free and available for Chrome, Firefox, and Edge. Open any website, click the extension, and download what you need — no code required.

Which method should you use?

For a one-off grab where you’re comfortable with code, dev tools work fine. If you regularly pull icons or logos, or you want clean files that look right outside the page, the extension saves a lot of time and avoids the “downloads as HTML” headaches entirely.

Frequently asked questions

Why does my SVG download as an HTML file?
This happens when you right-click and "Save as" on an inline SVG — the browser saves the whole page wrapper instead of the vector. To get a clean .svg file, copy the SVG element's markup from dev tools and save it with a .svg extension, or use an extension like SVG Export that extracts the vector directly.
Can I download an SVG logo from any website?
Usually, yes — as long as the logo is rendered as an SVG (most modern sites use SVG logos). If the logo is a PNG or JPG, there is no vector to extract. SVG Export lists every SVG on the page so you can confirm what's available before downloading.
Is it legal to download SVGs from a website?
Downloading an SVG for personal inspection or learning is generally fine, but logos and illustrations are often protected by copyright or trademark. Always check the site's license and usage terms before reusing an asset commercially.
How do I download all the SVGs on a page at once?
Manual methods only let you grab one SVG at a time. The SVG Export extension can select every SVG on a page and download them together as a single zip file.

Download SVGs the easy way

Extract every SVG on any page and export to SVG, PNG, or JPG — free, for Chrome, Firefox, and Edge.

Chrome Add to Chrome

Related guides

The Best SVG Downloader Extensions (Chrome, Firefox & Edge)

What to look for in an SVG downloader browser extension, how the popular options compare, and how to pick the right one for grabbing SVGs from any website.

How to Convert an SVG to PNG (or JPG) from a Website

The easiest ways to save or convert an SVG from a website to PNG or JPG — including a one-click method that resizes and exports at any resolution.