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