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