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