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