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