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