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