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