N5 – CSS locations
There are three places that CSS data can be stored for use with HTML files. Inline Inline CSS applies to one html element it is added as the value for a style attribute. <h1 style=’color:red;’>Page heading</h1> Internal Internal CSS is declared inside <style> which is located in the <head> area of the page. It applies …
