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