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