diff --git a/svg/lesson1/images/owl-silhouette.png b/svg/lesson1/images/owl-silhouette.png
new file mode 100644
index 00000000..4bc38a26
Binary files /dev/null and b/svg/lesson1/images/owl-silhouette.png differ
diff --git a/svg/lesson1/images/owl-silhouette.svg b/svg/lesson1/images/owl-silhouette.svg
new file mode 100644
index 00000000..dead658f
--- /dev/null
+++ b/svg/lesson1/images/owl-silhouette.svg
@@ -0,0 +1,18 @@
+
+
+
+
\ No newline at end of file
diff --git a/svg/lesson1/tutorial.md b/svg/lesson1/tutorial.md
new file mode 100644
index 00000000..2c18a0fb
--- /dev/null
+++ b/svg/lesson1/tutorial.md
@@ -0,0 +1,549 @@
+---
+layout: page
+title: Introduction to SVG
+---
+
+## Introduction to SVG
+
+### Objectives
+
+In this tutorial we are going to look at:
+
+* What is SVG?
+* What tools do you need to work with SVG?
+* SVG structure
+* Basic shapes
+* Ordering
+* Basic styling with CSS
+
+### Goal
+
+By the end of this tutorial, you'll have mastered the basics of SVG and will be
+able to create an image using simple shapes.
+
+## What is SVG?
+
+**SVG** stands for **S**calable **V**ector **G**raphics and is a markup language
+to describe images using a set of drawing instructions. **Scalable** means that
+you can scale a SVG image to any size, it will never look blocky. **Vector** means
+that it is made of a set of drawing instructions that defines the shape and area
+of each item in the image, which in turns means that it can result in very large
+files for complex images.
+
+For example, the two images below show the same image in SVG and PNG formats
+set at a width of 200 pixels. Because the PNG has a natural size of 50
+pixels it looks blocky when enlarged.
+
+
+
+
+Owl image [CC0](https://creativecommons.org/publicdomain/zero/1.0/),
+[PhyloPic](http://phylopic.org/image/4e35207e-a75a-4518-8eca-1d574eebfbb4/).
+
+## Tools to work with SVG
+
+SVG images are made of drawing instructions that use a markup language that work
+in a very similar way to HTML, with a different set of tags. Because of this,
+all modern browsers support SVG out of the box and you can use the same tools
+that you use with HTML to author and debug SVG images. You can even style SVG
+images with CSS, interact with them using JavaScript or generate them
+programmatically to create data visualisations, such as what a tool like
+[d3.js](https://d3js.org/) can do.
+
+If you use SVG to create complex static images, you can also use vector graphic
+programs:
+
+* [Inkscape](https://inkscape.org/) is an open source vector drawing programme
+ that uses SVG as its native data format.
+* [Adobe Illustrator](https://www.adobe.com/uk/products/illustrator.html) is the
+ vector cousin of Photoshop and has a great SVG export function.
+* [Sketch](https://www.sketch.com/) can export to SVG.
+* [SVGOMG](https://jakearchibald.github.io/svgomg/) can optimise SVG code and
+ reduce its size. Note that SVGOMG will need the `xmlns` attribute set on the
+ `svg` tag to work properly (see below).
+
+## SVG Structure
+
+SVG images use tags just like [HTML elements](../../html/lesson1/tutorial.html#html-elements).
+The top-level tag is the `