Opinions on my tribute page

Hello,
I would like feedback on my tribute page:


thanks

Hi @Sadiamalik,

CSS inspector:

  • Unexpected unknown property “font-family-monospace”:

MDN documentation:
font-family - CSS: Cascading Style Sheets | MDN

The font-family CSS descriptor allows authors to specify the font family for the font specified in an @font-face rule.

Syntax

/* <string> values */
font-family: "font family";
font-family: 'another font family';

/* <custom-ident> value */
font-family: examplefont;

HTML:

  • Do not use <br> to increase a gap:
<div class="card">
    <h1>Faysal Qureshi</h1>
    <p class="title">Actor and Host</p>
    <p class="text-muted">Pakistan</p>
  </div>
  </br>

MDN documentation:
<br>: The Line Break element - HTML: HyperText Markup Language | MDN

Do not use <br> to increase the gap between lines of text; use the CSS margin property or the <p> element.

Cheers and happy coding :slight_smile:

Any particular reason why not to use <br>?

Thanks for the feedback.

Because a margin is not the same as a line break.

MDN documentation:
<br>: The Line Break element - HTML: HyperText Markup Language | MDN

The HTML <br> element produces a line break in text (carriage-return). It is useful for writing a poem or an address, where the division of lines is significant.

HTML - Wikipedia

HTML describes the structure of a web page semantically

HTML - Wikipedia

Semantic HTML is a way of writing HTML that emphasizes the meaning of the encoded information over its presentation (look).

Cheers and happy coding :slight_smile: