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