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 : GOUP
Last Updated : September, 2020


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>GOUP</dt>
     <dd>Website with programming tutorials</dd>
</dl>