Skip to content

Instantly share code, notes, and snippets.

@mlassoff
Created June 29, 2017 16:20
Show Gist options
  • Save mlassoff/cf2b1af12d029cceaf14fc0cbd9dba6c to your computer and use it in GitHub Desktop.
Save mlassoff/cf2b1af12d029cceaf14fc0cbd9dba6c to your computer and use it in GitHub Desktop.
<!Doctype HTML>
<html>
<head>
<title>Lists</title>
</head>
<body>
<h1>Mark's favorite Bands</h1>
<ul type="disc">
<li>Journey</li>
<li>Scandal</li>
<li>REO Speedwagon</li>
<li>Styx</li>
<li>Foreigner</li>
<li>U2</li>
<li>The Cure</li>
</ul>
<h1>6 Places I Have Not Been Too</h1>
<ol type="i">
<li>Idaho</li>
<li>South Dakota</li>
<li>Alaska</li>
<li>Nebraska</li>
<li>Wyoming</li>
<li>Mississippi</li>
</ol>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment