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