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