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