Tribute Page : Tim Berners-lee

Hi everyone, this is my first project on freeCodeCamp. I like to see your feedback. Its here.

Looks good, works responsively, good/appropriate use of <table>.

Note that whitespace is collapsed by default in HTML. Pasting several “pararaphs” of text inside a single paragraph (<p>) element produces a single paragraph of output.

Whitespace in source

Source:

<p>This is paragraph 1.

This is still paragraph 1.</p>

Output:

This is paragraph 1. This is still paragraph 1.

Semantic paragraphs (whitespace in output)

Source:

<p>This is paragraph 1.</p><p>This is paragraph 2.</p>

Output:

This is paragraph 1.

This is paragraph 2.

1 Like

Thank you Lionel-rowe for your feedback, I fixed it. :slightly_smiling_face:
this is very helpful.