Add a heading to your content and
make a list.....
Ordered List
- Format the content using HTML
- Use style sheets to present content
- Add links to other pages on the website
Unordered List
- Add a footer for license information
- Use citations where appropriate
- Do a code review
You can align the text within a list to center or right using the text-align attribute in the css rule. Here is an example.
Centered List
- Create a rule in the CSS file for the div to be centered.
.centereddiv { text-align: center; }
- Create a rule in the CSS file for the list to be displayed as an inline-block.
.centeredlist { display: inline-block; text-align: left; }
- Add the appropriate class tags to your div and ul elements on the html page.

This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.