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