HTML - Build a Website
This course covers the basics of building a website using HTML. Work your way through the videos/articles and I'll teach you everything you need to know to create a basic website!

Lists

Lesson 11
Author : 🦒
Last Updated : October, 2017


Code

Copy<ul>
     <li>Apples</li>
     <li>Oranges</li>
     <li>Pears</li>
</ul>

<ol type="A">
     <li>One</li>
     <li>Two</li>
     <li>Three</li>
</ol>

<dl>
     <dt>🦒</dt>
     <dd>Website with programming tutorials</dd>
</dl>