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