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