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