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