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