Woman running at dusk with title text

Exercise: Aerobic Exercise

Aerobic exercise goes by many names. It’s often called endurance exercise because it’s done over long periods of time. Another common name is cardio because of its benefit to the cardiovascular system. Whatever you call it, it’s an integral part of any exercise routine, and should be a part of your daily life in some form or another. So what exactly is aerobic exercise and how can we use it to improve our health? Continue reading Exercise: Aerobic Exercise

JavaScript Clocks: Animating SVG

In our last article, we looked at the very basics of SVG: just enough to draw a hand on a blank clock face. In this article, we’ll be looking at how to animate those elements using JavaScript. Let’s take a look at where we left off last time. <html> <head> <title> Clock </title> </head> <body> <svg> <rect x=”50%” y=”5%” width=”1%” height=”45%” transform=”rotate(45, 50, 50)” /> … Continue reading JavaScript Clocks: Animating SVG