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