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