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