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