December 2002
Beginner to intermediate
464 pages
8h 34m
English
As we keep saying, SVG is written in XML, so familiarity with XML's syntax is very helpful when you want to create or edit SVG code.
Having already looked at XML code, let's take a look at some simple SVG code. Using the Jasc WebDraw program (a drawing application for SVG, which we discuss further in Chapter 10), we made the following graphic in SVG (see Figure 1-8) and exported it into a raster bitmap file for the purposes of display in this book.

The code behind the SVG graphic is:
1. <?xml version="1.0" standalone="no"?> 2. <!DOCTYPE svg PUBLIC "-//W3C//DTD ... |