From e5591fcaf6014c912a2e7edeb9ecb858cf6d4c0e Mon Sep 17 00:00:00 2001
From: Domenick Mitchell <69612428+Domanator13@users.noreply.github.com>
Date: Fri, 8 Oct 2021 00:19:23 -0400
Subject: [PATCH] Create svgs.md
---
lessons/misc-quick-reference/svgs.md | 209 +++++++++++++++++++++++++++
1 file changed, 209 insertions(+)
create mode 100644 lessons/misc-quick-reference/svgs.md
diff --git a/lessons/misc-quick-reference/svgs.md b/lessons/misc-quick-reference/svgs.md
new file mode 100644
index 00000000..5cd1d2ca
--- /dev/null
+++ b/lessons/misc-quick-reference/svgs.md
@@ -0,0 +1,209 @@
+---
+title: SVGs
+---
+
+SVGs are, Scalable Vector Graphics, they use an XML based code/text to describe
+how the image itself looks. This guide will cover everything you need to know
+about an SVG.
+
+# Why use SVG?
+
+Some of the benefits of an SVG are that they are scalable, meaning you can
+change the height and width of the image and it will not lose quality like a
+raster image.
+
+SVGs physically **cannot** pixelate, this is because they are made using vectors
+instead of pixels as in a traditional image.
+
+SVG are code based unlike traditional raster images, meaning there load time is
+a lot faster in browsers.
+
+
+
+
+Here is an example of an SVG
+
+```svg
+
+```
+
+
+
+
+
+While this may look scary and a bit daunting its _actually_ not that complicated
+and you will **not** be coding SVGs so you don't have to worry about looking at
+the code all that much. There are some important takeaways from this though that
+we will go over.
+
+A question you may be asking is what exactly does this code make, I thought we
+were talking about an image file type?
+
+
+
+This is what that code for the SVG above actually translates to it's the logo
+for [React](https://handbook.suncoast.io/lessons/react-intro).
+
+## Parts of an SVG
+
+
+
+**svg Tag**:
+
+`