Fonts 字体不适用于Tumblr

Fonts 字体不适用于Tumblr,fonts,tumblr,Fonts,Tumblr,我应用了这些代码,但边栏标题上的字体不起作用 @font-face { font-family: 'gothambold1'; src: url('http://pllfans.com/wp-content/uploads/2015/07/gothambold1.eot'); src: local('gothambold1'), url('http://pllfans.com/wp-content/uploads/2015/07/gothambold1.woff') fo

我应用了这些代码,但边栏标题上的字体不起作用

@font-face {
    font-family: 'gothambold1';
    src: url('http://pllfans.com/wp-content/uploads/2015/07/gothambold1.eot');
    src: local('gothambold1'), url('http://pllfans.com/wp-content/uploads/2015/07/gothambold1.woff') format('woff'), url('http://pllfans.com/wp-content/uploads/2015/07/gothambold1.ttf') format('truetype');
}

.sidebartitle {
    padding-bottom:13px;
    font-size:21px;
    background-color:#000;
    margin-left:-30px;
    margin-top:-30px;
    margin-right:-30px;
    padding:30px;
    font-family: 'gothambold1' !important;
}

使用字体的base64编码,并将其添加到@font-face声明中

@font-face {
font-family: 'gothambold1';
src: url('http://linktofontface.eot');
}

@font-face {
font-family: 'gothambold1';
src: url(data:font/ttf;base64,[insert-encode-here]) format('truetype');
font-weight: normal;
font-style: normal;
}
更多说明如下: