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