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