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