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