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