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