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