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