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