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