The assignment

Create a network of pages to tell a story or poem

Resources & Tips

Embedding Javascript

You’re not expected to use JS for this project. That said, if you feel inspired, follow these instructions for help in embedding Javascript to your webpage: Javascript Resources

Additionally, I’ve compiled a list of fun libraries to use: JS Libraries

Embedding SVGs

SVG - or scalable vector graphics - is a standard format for rendering graphics at the web that scales across sizes. Unlike a raster-based image format like PNG or JPG image which stores color values for pixels, an SVG stores images as a set of points and lines between points. This means that:

If you want to embed shapes or images in your project, and have them work in tandem with code, you should consider using an SVG. You can generate SVGs from just about any graphics editing tool - simply export the image from your tool into an SVG format.

To import the SVG into your project:

  1. Open the exported SVG in VS code (left image)
  2. Copy paste the whole file and add it into your HTML (right image)

Untitled

Untitled