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