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