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