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