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