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