scrimba
Basic HTML and HTML5
Create an Ordered List
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Create an Ordered List
AboutCommentsNotes
Create an Ordered List
Expand for more info
index.html
run
preview
console
<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</åp>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>

</main>

<!--
Create an ordered list of the top 3 things cats hate the most.
-->
Console
index.html
-1:45