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