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