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