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