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