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