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