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