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