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