CSS w/o Style Section?

I noticed that my forked code for my Tribute Page exercise does not have any Style sections in it on both HTML or CSS code??? I thought you MUST place CSS in the Style section for it to work? What am I missing?

The <style> tags are only used when you are adding your css to an html file. Normally css rules are actually in .css files, which are linked to the .html files. CodePen does this linking for you (just like you don’t need to add the <body> tags, etc). Just put your css in the “CSS” section of CodePen.

1 Like