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