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