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