import style sheet in css code example
Example 1: how to link your css file to html
<head>
<link rel='stylesheet' href='style.css'>
</head>
Example 2: import css in another css file
@import "navigation.css"; /* Via string */
or
@import url("navigation.css"); /* Via url */