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