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