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