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