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