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