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