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