 Change the starting point for your ordered lists.

Use the `start` attribute to change the starting point for your ordered lists.

```html
<ol start="10">
  <li>Git</li>
  <li>Ruby</li>
  <li>JS</li>
  <li>PostgreSQL</li>
  <li>CSS</li>
  <li>HTML</li>
</ol>
```

*Output:*

```
10. Git
11. Ruby
12. JS
13. PostgreSQL
14. CSS
15. HTML
```

Victor Velazquez
February 28, 2021
