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