I connect two style files to the document:
<link rel="stylesheet" href="css/main.min.css" /> <link rel="stylesheet" href="libs/svg/css/fontawesome-all.min.css" />
And the second one does not work for me, although the path is correct. Here is the file structure:
-app --css ---main.min.css --libs ---svg ----fontavesome-all.min.css Now, the whole incomprehensibility is that when I connect both files at once, it does not work, but WHEN I connect only the second file, everything works. It turns out that Font Awesome only works without main.min.css. What is the problem? 
