Understand
- What image attributions are and which can we use for our site
- New HTML tags: images <img>, unordered lists <ul>, and ordered lists <ol>
Apply
- Complete CodeCademy lessons 1.7-1.10
- Use CodePen to practice new tags learned in CC
Create
- Develop a simple recipe HTML page on CodePen that uses <img>, <ul>, and <ol> tags
For the instructor's eyes only
8 min
10 min
5 min
Let's practice with lists!
What if we want some order?
<ul> <li>First Item</li> <li>Second Item</li> </ul>
Starts list
Ends list
<ol> <li>First Item</li> <li>Second Item</li> </ol>
15 min