Looking for some opinions on Tribute-

Hey all, just wanted to get some feedback on my Tribute page. Day 4 here and starting on the portfolio - 0¿0 Its tough but I am having fun so far. In my opinion I would like to clean the code up some and make it look better in the editor. Thanks for looking!

See the Pen Coach Cal Tribute Page by Aaron (@aaronedwarda) on CodePen.

Hi @aaronedwarda,

CSSlinter

  • Unknown property ‘text-color’
.p1 {
  ...
   text-color: #ffffff;}

MDN documentation:
color - CSS: Cascading Style Sheets | MDN

The color property sets the foreground color of an element’s text content, and its decorations. It doesn’t affect any other characteristic of the element; it should really be called text-color and would have been named so, save for historical reasons and its appearance in CSS Level 1.


  • Unexpected token:
.figure {
  ...
  border: ;
 ...
}
  • invalid value (thin):
.quote-text {
...   
    font-weight: thin;
...

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

Values

  • normal
  • bold
  • lighter
  • bolder
  • 100, 200, 300, 400, 500, 600, 700, 800, 900

HTML inspector:

  • invalid elements:
    The <p1> element is not a valid HTML element.
    The <blockqoute> element is not a valid HTML element.
    The <p3> element is not a valid HTML element.

MDN documentation:

Cheers and happy coding :slight_smile: