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