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