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