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