Use on the webTotal Use [ 4181 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/09bc57a2b33974d4f502d69d96ed92ee?family=Fleischman+BT+W01+Regular" 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/09bc57a2b33974d4f502d69d96ed92ee?family=Fleischman+BT+W01+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Fleischman BT W01 Regular";
src: url("https://db.onlinewebfonts.com/t/09bc57a2b33974d4f502d69d96ed92ee.eot");
src: url("https://db.onlinewebfonts.com/t/09bc57a2b33974d4f502d69d96ed92ee.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/09bc57a2b33974d4f502d69d96ed92ee.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/09bc57a2b33974d4f502d69d96ed92ee.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/09bc57a2b33974d4f502d69d96ed92ee.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/09bc57a2b33974d4f502d69d96ed92ee.svg#Fleischman BT W01 Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Fleischman BT W01 Regular";