To be quite honest this class felt like CSS 1,000,001, but I thought it was really interesting to see my website come to life. CSS stands for Cascading Style Sheets, it basically just makes your website stylish. It was hard for me to comprehend at the start how the two worked in tandem, but adding ‘.class’ etc made me have more of an understanding of it.

We also circled back to our HTML and experimented with lists as follows:

We looked at ordered <ol> and unordered – <ul> lists where:

<ol>

<li>first item<li>

<li>second item<li>

<li>third item<li>

<ol>

would be displayed as:

  1. first item
  2. second item
  3. third item

and

<ul>

<li>first item<li>

<li>second item<li>

<li>third item<li>

<ul>

would be displayed as: