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