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