css字体库免费下载使用(带网址)

识别字体网址

网址

网址

网址

使用

在这里插入图片描述

<style lang="scss" scoped>
@font-face {
    
    
    font-family: 'UnidreamLED';  // 定义字体名称 和下面对应
    src: url('../../assets/style/fonts/font2/LEDFont.ttf'); // 引入字体路径
    /***兼容ie9***/
    // src: url('../../assets/style/fonts/font/UnidreamLED.eot?#iefix') format('embedded-opentype'),
    //     url('../../assets/style/fonts/font/UnidreamLED.woff') format('woff'), local('UnidreamLED'), url('../../assets/style/fonts/font/UnidreamLED.woff');
    // /***默认使用本地的***/
}

.times {
    
    
    font-size: 150px;           
    font-family: 'UnidreamLED'; // 使用字体名称
    color: #a2ff66;
}

</style>

效果

在这里插入图片描述

最后

感觉文章好的话记得点个心心和关注和收藏,有错的地方麻烦指正一下,如果需要转载,请标明出处,多谢!!!

猜你喜欢

转载自blog.csdn.net/m0_49714202/article/details/126153022