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