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