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