Did the Titanic Sink due to a Fire? 1st portfolio project

Hi all im Sarah and i have just hit 120 challenges so far, For my 1st portfolio i decided to do a bit of research, on a much loved topic, The Titanic, have fun reading, and please tell me, any ideas of making it better.
Much Love and coding, Sarah x

Don’t use <br> to make paragraphs. Each one should be in its own <p> tag. For example,

<p>
The sinking of the RMS Titanic may have been caused
by an enormous fire on board, not by hitting an iceberg ...
</p>

<p>
More than 1,500 passengers lost their lives when the Titanic
sank on route to New York from Southampton in April 1912.
</p>

<p>
While the cause of the disaster has long been attributed
to the iceberg, fresh evidence has surfaced of a fire ...
</p>

<caption> should be nested inside <table>.

You forgot an opening <tr> in the table header. Also, you used </head> instead of </thead>

You forget the alt attribute in the second image.

I think it’s better to use <blockquote> around the part in quotes

<b><i>“high speed”</b></i>

Tags should be closed in proper order; here </i> should go before </b>.

You should use CSS margin instead of <br> if you want more vertical space between paragraphs (or any other element).

Using alternating colors in the table is nice, but after digging more into CSS you’ll learn that there’s an easier way to achieve the same effect without explicitly using alternating classes :wink:

In general, avoid using inline styles.

@kevcomedia, thankyou for your feedback, i have only been doing the course for 2 weeks, but value your comments its the only way i will learn x