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