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