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