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