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