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