Does anyone know what this nonsense means in HTML?
From what I can tell the long string of numbers is about an animation? but I might be wrong? The output is an icon.
Does anyone know what this nonsense means in HTML?
From what I can tell the long string of numbers is about an animation? but I might be wrong? The output is an icon.
@thelinuxcast
Not sure I understand the question?
The <svg> tag basically contains the raw content of the image, and it shows up the same as if you'd included it with <img> and src. <svg> images are basically just XML and can be represented with the <svg> tag in HTML.
The magic of SVG is how I was able to get the https://tty1.blog favicon to change colors to match the color scheme.
@paul @benjaminhollon Yeah, if that's supposed to be a better way of doing images on the Internet, I don't see it.
Oh well. Thanks, guys for your help.
@thelinuxcast @paul
It's a better way of doing *specific types* of images on the web. A SVG is basically a set of mathematical instructions on how to build the image from scratch. It works best for icons and flat illustrations. A raster image like a photograph wouldn't make a good SVG at all.
The advantage is that SVGs remain sharp and crisp at any sizing.