Use on the webTotal Use [ 5032 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/a02daf68c7fdf1405da2406a97f4175c?family=MUSIC+LOGOS+TFB" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/a02daf68c7fdf1405da2406a97f4175c?family=MUSIC+LOGOS+TFB);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "MUSIC LOGOS TFB";
src: url("https://db.onlinewebfonts.com/t/a02daf68c7fdf1405da2406a97f4175c.eot");
src: url("https://db.onlinewebfonts.com/t/a02daf68c7fdf1405da2406a97f4175c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/a02daf68c7fdf1405da2406a97f4175c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/a02daf68c7fdf1405da2406a97f4175c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/a02daf68c7fdf1405da2406a97f4175c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/a02daf68c7fdf1405da2406a97f4175c.svg#MUSIC LOGOS TFB")format("svg");
}
2CSS rules to specify fonts
font-family: "MUSIC LOGOS TFB";