How to include css file in HTML from another folder code example
Example 1: how to link css to html in different folder
<link rel="stylesheet" href="../css/Style_page_1.css">
Example 2: import css in another css file
@import "navigation.css"; /* Via string */
or
@import url("navigation.css"); /* Via url */