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