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