Add external CSS file to blogger template

前端 未结 1 345
长情又很酷
长情又很酷 2021-01-13 14:17

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 direc

相关标签:
1条回答
  • 2021-01-13 14:26

    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'/>
    
    0 讨论(0)
提交回复
热议问题