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