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