Skip to content Skip to sidebar Skip to footer

Add External Css File To Blogger Template

In the HTML code of my blogger template I am trying to add an external link to a CSS file hosted in Google drive. I have made the CSS file public and created a direct download link

Solution 1:

The problem is with the & symbol in the link. You will need to replace it with & to make the link be accepted by Blogger's XML parser -

<link href='//drive.google.com/uc?export=download&amp;id=0ByXCg9N1QXp8ZWdEWHlIUjMyRDQ' 
  rel='stylesheet' media='all' type='text/css'/>

Post a Comment for "Add External Css File To Blogger Template"