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