Skip to content

Instantly share code, notes, and snippets.

@rurtubia
Last active August 29, 2015 14:22
Show Gist options
  • Select an option

  • Save rurtubia/a53b62be5ac46a04e2d4 to your computer and use it in GitHub Desktop.

Select an option

Save rurtubia/a53b62be5ac46a04e2d4 to your computer and use it in GitHub Desktop.
HTML lists
<html>
<body>
<ol>
<li>dogs</li>
<li>cats' websites</li>
<li>grammar and algebra</li>
</ol>
</body>
</html>
<html>
<body>
<ul>
<li>Purr </li>
<li>jump </li>
<li>eat the grass</li>
<li>rip the couch </li>
<li>scratched </li>
<li>sunbathe</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment