Reversed ordered list

I was setting up a new repo where I’m hoping to capture a list of projects that I’ve been working on, as an on-going list. I got curious about what the simplest way to order these projects would be where the oldest project would be number 1 and the newest would be whatever number project I’m on. It’s simply possible using html’s ordered list element with the reversed prop. I found this on MDN: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol

Here’s an example:

See the Pen reversed ordered list by usmanity (@usmanity) on CodePen.