Answers for "How to include css file in HTML from another folder"

CSS
3

how to link css to html in different folder

<link rel="stylesheet" href="../css/Style_page_1.css">
Posted by: Guest on February-02-2021
4

import css in another css file

@import "navigation.css"; /* Via string */

or

@import url("navigation.css"); /* Via url */
Posted by: Guest on July-28-2020

Code answers related to "How to include css file in HTML from another folder"

Browse Popular Code Answers by Language