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