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