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