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