+ 2
Is there any alternate way to download all the Google fonts using a single Link tag instead of using separate link tags ?
3 Respuestas
+ 6
<link href="https://fonts.googleapis.com/css?family=Lobster|Indie+Flower|Josefin+Sans|Ubuntu|Baloo+Tammudu|Abel" rel="stylesheet" type="text/css">
+ 5
You can't include "all" Google Fonts in one <link> but you can include "multiple" Google Fonts in one <link> ....
Example :- <link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah|Indie+Flower|Pacifico|Roboto" rel="stylesheet">
^_^ → https://www.techvigil.com/tips-tricks/300/embedding-multiple-google-web-fonts/
+ 2
Tq friends both of you provided me correct solution. Now that makes my code efficient. Peace✌