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