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