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