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