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