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