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