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