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